<?php

namespace App;

class FortunemethodDetail extends BaseModel
{
    protected $table = 'fortune_method_details';

    protected $fillable = ['id', 'fortune_teller_id', 'fortune_method_id', 'created_at', 'updated_at'];

    public function detail() {
        return $this->belongsTo(Fortunemethod::class, 'fortune_method_id', 'id')->select('id', 'name');
    }
}
