I am Using laravel 4 framework\'s. When I used redirect after the Auth::logout(), the redirection was not working. I used View::make() too, but same \"Whoops, looks like somethi
I learned that I was getting the logout error in my application because I was using
Route::post('logout', array('uses' => 'SessionController@doLogout'));
Just remember to use the following instead.
Route::get('logout', array('uses' => 'SessionController@doLogout'));
This worked smoothly.