Middleweaer作成方法 Laravel
Middlewareの作成方法
ターミナル
php artisan make:middleware hoge
Http/Middlewareファイルに作成される
Middleweareの登録
Kernel.php
protected $routeMiddleware = [
~
'Hoge' => \App\Http\Middleware\hoge::class,
];
web.php
Route::get('/', 'TopController@index')->middleware('Hoge');
これで使えた。
間違ってたらメンゴ
Author And Source
この問題について(Middleweaer作成方法 Laravel), 我々は、より多くの情報をここで見つけました https://qiita.com/yoshiakidayo/items/06c90a995c4761e648e3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .