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