| Total Complexity | 0 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class Config extends Model |
||
| 12 | { |
||
| 13 | use CrudTrait; |
||
|
|
|||
| 14 | |||
| 15 | /* |
||
| 16 | |-------------------------------------------------------------------------- |
||
| 17 | | GLOBAL VARIABLES |
||
| 18 | |-------------------------------------------------------------------------- |
||
| 19 | */ |
||
| 20 | |||
| 21 | protected $table = 'config'; |
||
| 22 | |||
| 23 | protected $guarded = ['id']; |
||
| 24 | |||
| 55 |