feat: Add Scribe package for API documentation and create documentation route

This commit is contained in:
Jonas Pfalzgraf 2024-12-16 09:17:28 +01:00
parent af310dda42
commit 69a26c0b74
4 changed files with 1021 additions and 303 deletions

View file

@ -27,4 +27,6 @@ Route::middleware(['auth:sanctum'])->group(function () {
Route::get('/rewards', [RewardController::class, 'index']);
Route::get('/rewards/unlocked', [RewardController::class, 'unlocked']);
Route::get('/api/documentation', '\Knuckles\Scribe\Http\Controller@documentation');
});