На самом деле, я хочу проверить дату в правилах проверки Laravel.
'sometimes|date_format:Y-m-d|date_format:Y-m-d H:i:s',
public function rules()
{
return [
'title' => 'required|string|between:3,100',
'created_at' => 'sometimes|date_format:Y-m-d|date_format:Y-m-d H:i:s',
'updated_at' => 'required|date_format:Y-m-d',
'date_of_purchase' => 'required|date_format:Y-m-d',
'date_of_expiration' => 'required|date_format:Y-m-d'
];
}
Ожидания
'created_at' => 'sometimes|date_format:Y-m-d, Y-M-d H:i:s',
Есть ли способ сделать это, как вышеупомянутый код строки. Надежда получила это.