1 | <?php |
||
8 | class CustomerRetribusiModel extends Model |
||
9 | { |
||
10 | |||
11 | protected $table = 'pbj_customer_retribusies'; |
||
12 | public $timestamps = true; |
||
13 | |||
14 | use SoftDeletes; |
||
15 | |||
16 | protected $dates = ['deleted_at']; |
||
17 | protected $fillable = array('customers_id', 'daftar_retribusi_id'); |
||
18 | |||
19 | public function getTransaksi() |
||
23 | |||
24 | public function getDaftarRetribusi() |
||
28 | |||
29 | public function getCustomer() |
||
33 | |||
34 | } |