Is there any way to say: Model::delete()->where('whatever', '=', 'whatever'):
When I create an item: Model::create('field' => 'attribute', 'field2' => 'attribute2'); This w...
Having a hard time figuring out why this will not work.. In routes.php: if ($apps = Apps::all()) {...
$rules = array( 'first_name' => array('required'), 'last_name' => array('required'), '...
Is there a way to modify $_POST and $_GET and then have them available to the Input class? Example:...
Found it. The issue was this: {{ Form::password('password', Input::old('password'), ['class' =>...
nadimtuhin said: try this ...'email' => 'required|email|unique:users,email' I did try that alre...
If I modify the input function in FormBuilder.php by adding this line, it fixes it: if (!is_array($o...
I have not changed the table or column names. The error does not happen until I include the unique...
The controller type is valid. I have tried making the validation rules as you described, no success...
The Laravel portal for problem solving, knowledge sharing and community building.