Hi, I have the following rules: $rules = array( 'purchase_amount' => 'required|integer',...
Hi, According to the Laravel documentation, I can do: 'email' => 'unique:users,email_address,10'...
Hi, I have two parameters that can have various values. One of the rules that I need to have is: &qu...
As the title, I have a form with a lot of fields and I want to return form data quickly when my vali...
when I tried to validate form field with number & min, min filter does not work properly. e.g. '...
I have a validation rule like this... required_if:field_name,field_value|date_format:m/d/Y|futureDat...
I've bound a model to a route parameter: $this->model('employee', 'App\Employee'); This is worki...
If we are doing authorization in the FormRequest is there a way to pass the model to the controller...
Hi there, I new there and with laravel. I try make users Authentication but have all time have this...
I can validate numeric using Ardent this way in my model: public static $rules = array( 'featid'...
When parsing the errors in the following way it works as expected. @foreach($errors->all() as $er...
My question is the following. I have a system that the User will register the series of a note. How...
Hi, I have this function for password recovery public function postForgotPassword() {...
Hey guys, In my pastebin is my small piece of code and question. Please take a look there: http://la...
$rules = array( 'first_name' => array('required'), 'last_name' => array('required'), '...
We have been implementing the repository pattern along side self-validating models using Magniloquen...
Hello, i am facing problems with a validating GET request with a built-in validator class: Controlle...
Most examples go something like this: return Redirect::to('register')->withErrors($validator); H...
Hello everyone, I'm new to laravel and I've been learning it for a couple of weeks now. The question...
Please help. If a user is on say xyz.com/course/1/edit and closes the browser, only to return after...
Solutions given in the past year. Excluding solutions from thread authors.
Select a tag below to filter the results
The Laravel portal for problem solving, knowledge sharing and community building.
The community