fix:dish material

This commit is contained in:
LAPTOP-7SGDREK0\shiweijun
2025-02-24 16:52:26 +08:00
parent c5e9f6665f
commit 51710eae96
2 changed files with 4 additions and 4 deletions

View File

@@ -25,8 +25,8 @@ class DishRequest extends FormRequest
'limit' => 'required|integer',
'dish_name' => 'sometimes|string',
'date' => 'sometimes',
'city_id' => 'sometimes|integer|exists:system_city,id',
'kitchen_id' => 'sometimes|integer|exists:kitchen,id',
'city_id' => 'required|integer|exists:system_city,id',
'kitchen_id' => 'required|integer|exists:kitchen,id',
];
}