Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class InvoiceDetail extends Model |
||
8 | { |
||
9 | use createdByUser, updatedByUser; |
||
10 | |||
11 | protected $table = 'trn_invoice_details'; |
||
12 | |||
13 | protected $fillable = [ |
||
14 | 'item_name', |
||
15 | 'plan_id', |
||
16 | 'item_description', |
||
17 | 'invoice_id', |
||
18 | 'item_amount', |
||
19 | 'created_by', |
||
20 | 'updated_by', |
||
21 | ]; |
||
22 | |||
23 | public function invoice() |
||
26 | } |
||
27 | |||
28 | public function plan() |
||
33 |