Issues (350)

app/Models/Config.php (1 issue)

Severity
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 IdeHelperConfig
10
 */
11
class Config extends Model
12
{
13
    use CrudTrait;
0 ignored issues
show
The trait Backpack\CRUD\app\Models\Traits\CrudTrait requires some properties which are not provided by App\Models\Config: $fakeColumns, $identifiableAttribute, $Type
Loading history...
14
15
    /*
16
    |--------------------------------------------------------------------------
17
    | GLOBAL VARIABLES
18
    |--------------------------------------------------------------------------
19
    */
20
21
    protected $table = 'config';
22
23
    protected $guarded = ['id'];
24
25
    /*
26
    |--------------------------------------------------------------------------
27
    | FUNCTIONS
28
    |--------------------------------------------------------------------------
29
    */
30
31
    /*
32
    |--------------------------------------------------------------------------
33
    | RELATIONS
34
    |--------------------------------------------------------------------------
35
    */
36
37
    /*
38
    |--------------------------------------------------------------------------
39
    | SCOPES
40
    |--------------------------------------------------------------------------
41
    */
42
43
    /*
44
    |--------------------------------------------------------------------------
45
    | ACCESORS
46
    |--------------------------------------------------------------------------
47
    */
48
49
    /*
50
    |--------------------------------------------------------------------------
51
    | MUTATORS
52
    |--------------------------------------------------------------------------
53
    */
54
}
55