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 = [];
}