'int', 'only_weekday' => 'int', 'from_date' => 'datetime', 'to_date' => 'datetime', ]; protected $fillable = [ 'name', 'from_date', 'to_date', 'minimum_stay', 'description', 'only_weekday' ]; public function fewo_prices() { return $this->hasMany(\App\Models\FewoPrice::class, 'season_id'); } }