[Vuejs]-Laravel validation seems does not work when working with schedules

1👍

maybe you need to parse the time using Carbon first like \Carbon\Carbon::parse($request->end_time) and then use laravel whereTime helper.

->whereTime('start_time','<',\Carbon\Carbon::parse($request->start_time))

Leave a comment