'date', 'meal_type' => 'integer', 'dishes' => 'array', 'status' => 'integer', 'deliver_at' => 'datetime', ]; } public function customer(): BelongsTo { return $this->belongsTo(Customer::class); } public function review(): HasOne { return $this->hasOne(MealReview::class); } }