ミドルウェアに基づいて認証を行いたいのですが、残念ながらクラスが存在しないので戻ります
これが私のミドルウェアです
Staff.php
<?php
namespace App\Http\Middleware;
use Closure;
use Auth;
class Staff
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$user = Auth::user()->type;
if ($user == 'S'){
return $next($request);
}
return "no";
}
}
これがkernel.phpです
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
protected $middleware = [
\App\http\Middleware\Staff::class,
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')
// ->hourly();
}
/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands()
{
require base_path('routes/console.php');
}
}
composer dump-autoloadを試しましたが、効果がありません。
これが私のルートです:
Route::get('/staff', 'StaffController@index')->middleware('Staff');
ミドルウェアをHttp呼び出しに適用する場合は、それらをapp/Http/Kernel.php
に登録する必要があります。ただし、ミドルウェアはApp\Console\Kernel
のコンソールコマンドに登録されています。 を参照Laravelドキュメント の詳細