Remove centralized account nav from app sidebar; redirect legacy URLs.
Deploy Ladill Events / deploy (push) Successful in 1m4s

Wallet, Billing, Team, Developers, and Support live on account.ladill.com.
Siloed sidebars keep product nav and app Settings only.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-19 00:42:32 +00:00
co-authored by Cursor
parent e4df5967c0
commit 1fe3f80c09
2 changed files with 4 additions and 25 deletions
+4 -9
View File
@@ -72,18 +72,13 @@ Route::middleware(['auth'])->group(function () {
Route::get('/payouts', [PayoutsController::class, 'index'])->name('events.payouts');
Route::get('/wallet', [AccountController::class, 'wallet'])->name('account.wallet');
Route::get('/billing', [AccountController::class, 'billing'])->name('account.billing');
Route::get('/wallet', fn () => redirect()->away(ladill_account_url('/wallet')))->name('account.wallet');
Route::get('/billing', fn () => redirect()->away(ladill_account_url('/billing')))->name('account.billing');
Route::get('/settings', [AccountController::class, 'settings'])->name('account.settings');
Route::put('/settings', [AccountController::class, 'updateSettings'])->name('account.settings.update');
Route::get('/team', [TeamController::class, 'index'])->name('account.team');
Route::post('/team', [TeamController::class, 'store'])->name('account.team.store');
Route::patch('/team/{member}', [TeamController::class, 'updateRole'])->name('account.team.role');
Route::delete('/team/{member}', [TeamController::class, 'destroy'])->name('account.team.destroy');
Route::get('/team', fn () => redirect()->away(ladill_account_url('/account/team')))->name('account.team');
Route::post('/switch-account', [TeamController::class, 'switchAccount'])->name('account.switch');
Route::get('/developers', [DeveloperController::class, 'index'])->name('account.developers');
Route::post('/developers', [DeveloperController::class, 'store'])->name('account.developers.store');
Route::delete('/developers/{token}', [DeveloperController::class, 'destroy'])->whereNumber('token')->name('account.developers.destroy');
Route::get('/developers', fn () => redirect()->away(ladill_account_url('/account/developers')))->name('account.developers');
});