控制器中间件
可以将中间件分配给路径文件中的控制器路径:
Route::get('profile', 'UserController@show')->middleware('auth');
但是,在控制器的构造函数中指定中间件更方便。使用控制器构造函数中的中间件方法,你可以轻松地将中间件分配给控制器的操作。
class UserController extends Controller
{
/**
* Instantiate a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
$this->middleware('log')->only('index');
$this->middleware('subscribed')->except('store');
}
}