Welcome Guest, Not a member yet? Register   Sign In
Validation error messages keep being loaded from system
#5

(05-10-2024, 09:13 AM)ozornick Wrote: Check locale in Request? dd(request()); in Controller. You may be overwriting the locale in the filter

The value for locale is correct, it is "es"

[Image: 5doUQA3.jpeg]


The process I do in the controller is just

Code:
     
$this->validation->setRules([
    'ssn'  => 'required|numeric|min_length[7]|max_length[8]',
    'gender' => 'required|string|min_length[1]|max_length[1]',
]);

if (!$this->validation->withRequest($this->request)->run()) {
    return $this->validation->getErrors();   
}
Reply


Messages In This Thread
RE: Validation error messages keep being loaded from system - by kabeza - 05-13-2024, 05:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB