Laravel重定向,注销不起作用
2022-08-30 16:23:00
我正在使用laravel 4框架。当我在Auth::logout()之后使用重定向时,重定向不起作用。我也使用了View::make(),但同样的“哎呀,看起来好像出了什么问题。”错误抛出了。
public function getLogout() {
Auth::logout();
return Redirect::to('users/login')->with('message', 'Your are now logged out!');
}
这是注销代码。我正在使用。有人请帮我这个。
路线.php
Route::get('/', function()
{
return View::make('hello');
});
Route::controller('users', 'UsersController');
断续器
@if(!Auth::check())
<li>{{ HTML::link('users/register', 'Register') }}</li>
<li>{{ HTML::link('users/login', 'Login') }}</li>
@else
<li>{{ HTML::link('users/logout', 'logout') }}</li>
@endif
这是我的调试器显示的内容。
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'remember_token' in 'field list' (SQL: update `users` set `updated_at` = 2014-04-23 11:30:41, `remember_token` = jSMcfpPnCPrKgwqfhB2tEEEd8h8x6d72viz67MbVzBD27A2G7AH8yWQo1ORf where `id` = 1)