Level 88
Laravel already has validation rules for that ;)
Documentation: https://laravel.com/docs/6.x/validation#rule-before
You can for example to this your validation rules
$rules = [
'name' => 'required',
'date' => 'before:' . now()->addWeek()->format('Y-m-d'),
];
now()is a helper method for\Carbon\Carbon::now();)
1 like