1 | <?php |
||
8 | class TarifModel extends Model |
||
9 | { |
||
10 | |||
11 | protected $table = 'pbj_tarifs'; |
||
12 | public $timestamps = true; |
||
13 | |||
14 | use SoftDeletes; |
||
15 | |||
16 | protected $dates = ['deleted_at']; |
||
17 | protected $fillable = array('uuid', 'uraian', 'tarif', 'wilayah_kota', 'wilayah_kabupaten', 'satuan', 'master_tarif_id'); |
||
18 | |||
19 | public function getMasterTarif() |
||
23 | |||
24 | public function getItem() |
||
28 | |||
29 | } |