First Commit (API Project)

This commit is contained in:
2025-07-17 10:05:47 +09:00
commit ad702d5ccf
371 changed files with 141373 additions and 0 deletions

28
app/Http/Kernel.php Normal file
View File

@@ -0,0 +1,28 @@
<?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* 전역 미들웨어
*/
protected $middleware = [
\App\Http\Middleware\CorsMiddleware::class, // CORS 미들웨어 추가
];
/**
* 웹 미들웨어 그룹
*/
protected $middlewareGroups = [
'web' => [],
'api' => [],
];
/**
* 개별 미들웨어 설정
*/
protected $routeMiddleware = [];
}