Laravelで時間を検証したい。例:-ユーザーが8 PMから10 PMまでの時間を入力したときに、検証エラーが表示されます。Laravelでそれを実現する方法
Date_formatルール検証を使用する
date_format:H:i
ドキュメントから
date_format:format
検証中のフィールドは、date_parse_from_format PHP関数に従って定義された形式と一致する必要があります。
おそらく、このコードはコントローラーで機能します。ただし、異なる日の時間は検証されません(例:翌日の午後9時から午前3時)。 time_start
およびtime_end
この場合、HH:mm
でも簡単に変更できます。
public function store(Illuminate\Http\Request $request)
{
$this->validate($request, [
'time_start' => 'date_format:H:i',
'time_end' => 'date_format:H:i|after:time_start',
]);
// do other stuff
}
このコードを試してください
use Validator;
use Carbon\Carbon;
$timeHours = "7:00 PM";//change it to 8:00 PM,9:00 PM,10:00 PM it works
$time = Carbon::parse($timeHours)->format('H');
$request['time'] = $time;
$validator = Validator::make($request->all(), [
'time' => ['required','integer','between:20,22']
]);
if ($validator->fails()) {
dd($validator->errors());
}
$beginHour = Carbon::parse($request['hour_begin']);
$endHour = Carbon::parse($request['hour_end']);
if($beginHour->addMinute()->gt($endHour)){
return response()->json([
'message' => 'end hour should be after than begin hour',
], 400);
}
Lavavel 5.6の場合:
/ app/Http/Requests/YourRequestValidationにあるファイル内
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class YourRequestValidation extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'initial_time' => 'required',
'end_time' => 'required',
'end_time' => 'after:initial_time'
];
}
/**
* Custom message for validation
*
* @return array
*/
public function messages()
{
return [
'initial_time.required' => 'Please, fill in the initial time',
'end_time.required' => 'Please, fill in the end time.',
'end_time.after' => 'The end time must be greater than initial time.'
];
}
}
おそらく、ドキュメントの this ビットを参照する必要があります。カスタムルールは、あなたの進むべき道のように聞こえます。