This commit is contained in:
miroman-afk
2022-06-16 12:50:50 +03:00
parent cb33be6001
commit 415b291785
11 changed files with 198 additions and 60 deletions

View File

@@ -6,4 +6,10 @@ use Illuminate\Database\Eloquent\Model;
class Dishes extends Model {
protected $table = 'dishes';
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}

View File

@@ -6,4 +6,10 @@ use Illuminate\Database\Eloquent\Model;
class Folders extends Model {
protected $table = 'folders';
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}

View File

@@ -6,4 +6,10 @@ use Illuminate\Database\Eloquent\Model;
class Units extends Model {
protected $table = 'units';
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}

View File

@@ -6,4 +6,10 @@ use Illuminate\Database\Eloquent\Model;
class UnitsList extends Model {
protected $table = 'units_list';
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}