Remove legacy frontend assets and update gallery routes

This commit is contained in:
2026-03-14 15:06:28 +01:00
parent 4f576ceb04
commit 78151aabfe
550 changed files with 826 additions and 108930 deletions

View File

@@ -228,7 +228,7 @@ Route::get('/dashboard', [DashboardController::class, 'index'])
->name('dashboard');
Route::middleware(['auth', 'creator.access'])->prefix('creator')->name('creator.')->group(function () {
Route::get('/artworks', fn () => redirect()->route('dashboard.artworks.index'))->name('artworks');
Route::get('/artworks', fn () => redirect()->route('studio.artworks'))->name('artworks');
Route::get('/analytics', fn () => redirect()->route('studio.analytics'))->name('analytics');
});