Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class Deposit extends Base |
||
8 | { |
||
9 | /** |
||
10 | * The table associated with the model. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $table = 'v_deposits'; |
||
15 | |||
16 | /** |
||
17 | * Indicates if the model should be timestamped. |
||
18 | * |
||
19 | * @var bool |
||
20 | */ |
||
21 | public $timestamps = false; |
||
22 | |||
23 | public function session() |
||
26 | } |
||
27 | |||
28 | public function receivable() |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param Builder $query |
||
35 | * @param Session $session |
||
36 | * |
||
37 | * @return Builder |
||
38 | */ |
||
39 | public function scopeWhereSession(Builder $query, Session $session): Builder |
||
44 |