If this is not allowed then please delete and accept my apolgies I decided to take a good hard look...
I'm trying to make changes to the user record. I expect a User Eloquent model when I call Auth::user...
All methods in my app use $this->layout->content = \View::make('my.view', compact('vars')); t...
That's about it really. This is the first time I've set up LEMP. I've got app/storage set to 777 -R,...
I'm building an app with lots of this kind of data, e.g. jobs. Most have a parent so I've started cr...
The Envoy package can help scheduling regular tasks. http://laravel.com/docs/5.1/envoy Have you trie...
Perhaps this would be better? (untested) <?php $checked = $user->hasRole($role); ?>
Have you tried if(function_exists('redirect'))?
I don't think there's anything wrong with the code, but perhaps with you moving stuff in/out of your...
I think what you're looking for is this Request::back()->withInput(); All your variables will be...
The Laravel portal for problem solving, knowledge sharing and community building.