2020-06-23 09:59:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class MenuPlan extends Model
|
|
|
|
{
|
2020-06-26 11:11:24 +00:00
|
|
|
protected $fillable = [
|
2020-06-30 10:38:02 +00:00
|
|
|
'week', 'monday', "tuesday", 'wednesday', 'thursday'
|
2020-06-26 11:11:24 +00:00
|
|
|
];
|
2020-06-23 09:59:26 +00:00
|
|
|
}
|