728x90
Laravel 11에서는 Kernel, cast, Console kernel이 제거되었다고 한다.
Laravel 9 버전의 공식 문서를 통해 sanctum을 설치하려고 하면,
SPA를 사용할 계획이 있는 경우 app/Http/Kernel.php에서 api 미들웨어 그룹을 찾아 배열 요소를 추가하라고 한다.
Laravel 11의 Kernel.php에 해당하는 내용은 app/bootstrap/app.php 파일로 이동되었다.
sanctum 기준으로 해당 파일의 withMiddleware 메서드 안쪽에 아래와 같이 추가하면 된다.
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
use Illuminate\Routing\Middleware\SubstituteBindings;
use Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__ . '/../routes/web.php',
commands: __DIR__ . '/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
$middleware->appendToGroup('api', [
EnsureFrontendRequestsAreStateful::class,
'throttle:api',
SubstituteBindings::class,
]);
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();
모델의 casts 항목은 사용해본적이 없으니 넘어가고, 콘솔 커맨드의 경우는 routes/console.php에 모두 입력하면 된다고 한다.
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Shcedule;
Artisan::command('inspire', function() {
$this->comment(Inpiring::qoute());
})->purpose('Display an inpiring quote');
Shcedule::command('inspire')->hourly();
출처1: https://rezakhademix.medium.com/laravel-11-no-http-kernel-no-casts-no-console-kernel-721c62adb6ef
출처2: https://laravel.com/docs/11.x/middleware#middleware-groups
'내가 자꾸 까먹어서 쓰는 개발 이야기 > Laravel' 카테고리의 다른 글
Laravel, Vue 설치 및 Vue SPA 세팅 script (0) | 2020.08.13 |
---|---|
Eloquent의 deep relationship (0) | 2020.07.10 |
php artisan make:model 실행 시 경로 지정하기 (0) | 2020.05.26 |
Blade template 사용자 directive (0) | 2019.06.24 |
사용자 Facade 만들어 phpstorm 에서 자동완성까지 (0) | 2019.06.11 |
최근댓글