group(function () { Route::get('/dashboard', function () { return view('dashboard'); })->name('dashboard'); }); # Swagger 설정 Route::get('/docs/api-docs.json', function () { return response()->file(storage_path('api-docs/api-docs.json')); }); Route::middleware('swagger.auth')->group(function () { Route::get('/api/documentation', function () { return response()->file(public_path('swagger-ui/index.html')); }); });