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