Wire admin studio SSR and search infrastructure

This commit is contained in:
2026-05-01 11:46:06 +02:00
parent 257b0dbef6
commit 18cea8b0f0
329 changed files with 197465 additions and 2741 deletions

View File

@@ -13,6 +13,7 @@
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\Legacy\AvatarController;
use App\Http\Controllers\Legacy\LegacyArtworkPhotoController;
use App\Http\Controllers\Legacy\CategoryRedirectController;
use App\Http\Controllers\Community\LatestCommentsController;
use App\Http\Controllers\User\FavouritesController;
@@ -22,6 +23,13 @@ use App\Http\Controllers\Web\GalleryController;
// ── AVATARS ───────────────────────────────────────────────────────────────────
Route::get('/avatar/{id}/{name?}', [AvatarController::class, 'show'])->where('id', '\d+')->name('legacy.avatar');
// ── LEGACY THUMBNAIL / PHOTO URLS ────────────────────────────────────────────
Route::get('/photo/{encoded}_{size}.{extension}', LegacyArtworkPhotoController::class)
->where('encoded', '[0-9A-Za-z]+')
->where('size', '\d+')
->where('extension', '[A-Za-z0-9]+')
->name('legacy.photo');
// ── ARTWORK (legacy comment URL) ──────────────────────────────────────────────
//Route::match(['get','post'], '/art/{id}/comment', [ArtController::class, 'show'])->where('id', '\d+');