| 1 | <?php |
||
| 8 | class ProgramKeahlian extends Model |
||
| 9 | { |
||
| 10 | use SoftDeletes; |
||
| 11 | |||
| 12 | public $timestamps = true; |
||
| 13 | |||
| 14 | protected $table = 'program_keahlians'; |
||
| 15 | protected $dates = [ |
||
| 16 | 'deleted_at' |
||
| 17 | ]; |
||
| 18 | protected $fillable = [ |
||
| 19 | 'label', |
||
| 20 | 'keterangan', |
||
| 21 | 'user_id', |
||
| 22 | ]; |
||
| 23 | /** |
||
| 24 | * The attributes that should be hidden for arrays. |
||
| 25 | * |
||
| 26 | * @var array |
||
| 27 | */ |
||
| 28 | protected $hidden = []; |
||
| 29 | |||
| 30 | public function user() |
||
| 34 | |||
| 35 | } |
||
| 36 |