MasterOptionDetail.php 357 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class MasterOptionDetail extends Model
  5. {
  6. protected $table = 'master_option_details';
  7. protected $fillable = [
  8. 'id_option',
  9. 'value',
  10. ];
  11. public function masterOption(){
  12. return $this->belongsTo('App\Model\MasterOption', 'id_master_option');
  13. }
  14. }