laravel techniques code example
Example: laravel tricks and tips
Route::get('logout', function()
{
Auth::logout();
return Redirect::home();
});
//@sujay
Route::get('logout', function()
{
Auth::logout();
return Redirect::home();
});
//@sujay