| 12345678910111213141516171819 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class MasterOptionDetail extends Model
- {
- protected $table = 'master_option_details';
- protected $fillable = [
- 'id_option',
- 'value',
- ];
- public function masterOption(){
- return $this->belongsTo('App\Model\MasterOption', 'id_master_option');
- }
- }
|