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