| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- use App\Model\Privillage\Role;
- use App\Model\TahunProgramDetail;
- use Auth;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class MasterOption extends Model
- {
- use SoftDeletes;
- protected $table = 'master_options';
- protected $fillable = [
- 'label',
- 'status',
- ];
- public function masterOptionDetail(){
- return $this->hasMany('App\Model\MasterOptionDetail', 'id_master_option');
- }
- }
|