Related questions
How to remove a package from Laravel using composer?
What is the correct way to remove a package from Laravel using composer?
So far I've tried:
Remove declaration from composer.json (in "require" section)
Remove any Class Aliases from app.php
Remove any references to the package from my …
Laravel Redirect Back with() Message
I am trying to redirect to the previous page with a message when there is a fatal error.
App::fatal(function($exception)
{
return Redirect::back()->with('msg', 'The Message');
}
In the view trying to access the msg with
…