getCarbonDate('date'); } /** * The rules that the incoming request must be matched against. */ public function rules(): array { return [ 'date' => 'required|date|after:1900-01-01|before:2099-12-31', ]; } }