Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class DepositReal extends Base |
||
6 | { |
||
7 | /** |
||
8 | * The table associated with the model. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $table = 'deposits'; |
||
13 | |||
14 | /** |
||
15 | * Indicates if the model should be timestamped. |
||
16 | * |
||
17 | * @var bool |
||
18 | */ |
||
19 | public $timestamps = false; |
||
20 | |||
21 | /** |
||
22 | * The attributes that are mass assignable. |
||
23 | * |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $fillable = [ |
||
27 | 'amount', |
||
28 | ]; |
||
29 | |||
30 | public function session() |
||
33 | } |
||
34 | |||
35 | public function receivable() |
||
40 |