3👍
✅
Try this and use whatever rules you need. 🙂
public function rules()
{
return [
'from' => 'required|date|date_format:Y-m-d|before:to',
'to' => 'required|date|date_format:Y-m-d|after:from',
];
}
Source:stackexchange.com