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