1 | <?php |
||
2 | |||
3 | namespace App\Models; |
||
4 | |||
5 | use Backpack\CRUD\app\Models\Traits\CrudTrait; |
||
6 | use Illuminate\Database\Eloquent\Model; |
||
7 | |||
8 | /** |
||
9 | * @mixin IdeHelperPaymentmethod |
||
10 | */ |
||
11 | class Paymentmethod extends Model |
||
12 | { |
||
13 | use CrudTrait; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
14 | |||
15 | protected $fillable = ['name', 'code']; |
||
16 | |||
17 | protected $table = 'paymentmethods'; |
||
18 | |||
19 | /* |
||
20 | |-------------------------------------------------------------------------- |
||
21 | | FUNCTIONS |
||
22 | |-------------------------------------------------------------------------- |
||
23 | */ |
||
24 | |||
25 | /* |
||
26 | |-------------------------------------------------------------------------- |
||
27 | | RELATIONS |
||
28 | |-------------------------------------------------------------------------- |
||
29 | */ |
||
30 | |||
31 | |||
32 | /* |
||
33 | |-------------------------------------------------------------------------- |
||
34 | | SCOPES |
||
35 | |-------------------------------------------------------------------------- |
||
36 | */ |
||
37 | |||
38 | /* |
||
39 | |-------------------------------------------------------------------------- |
||
40 | | ACCESORS |
||
41 | |-------------------------------------------------------------------------- |
||
42 | */ |
||
43 | |||
44 | /* |
||
45 | |-------------------------------------------------------------------------- |
||
46 | | MUTATORS |
||
47 | |-------------------------------------------------------------------------- |
||
48 | */ |
||
49 | } |
||
50 |