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...
Hi, I know that if I can set the value for the $primaryKey protected field in my model in order to t...
Hi, I have defined several "global" objects that should be available for every Controller...
I found a solution to my own problem: Before invoking the Validator::make() function, modify the set...
Hi neilpato22, How does one solve the problem if the validation needs to be done against some other...
I found out that I have to manually mention the name of the field in the rule: 'email' => 'unique...
Thank you trq. IoC is definitely the way to go and Service Providers might be the right mechanism fo...
The Laravel portal for problem solving, knowledge sharing and community building.