Fix post-registration 404, add speaker management, and simplify event creation.
Deploy Ladill Events / deploy (push) Successful in 28s

Proxy registration transaction paths on Events, add a join button on the
confirmation page, introduce speaker roster management, and replace the QR
design wizard with merchant-style create/show flows.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 13:44:53 +00:00
co-authored by Cursor
parent d942ebaa83
commit d2ec31f7a5
16 changed files with 811 additions and 3 deletions
+5
View File
@@ -6,6 +6,7 @@ use App\Http\Controllers\Events\AttendeeController;
use App\Http\Controllers\Events\OverviewController;
use App\Http\Controllers\Events\PayoutsController;
use App\Http\Controllers\Events\ProgrammeController;
use App\Http\Controllers\Events\SpeakerController;
use App\Http\Controllers\NotificationController;
use App\Http\Controllers\Public\EventRegistrationController;
use App\Http\Controllers\Public\QrScanController;
@@ -91,6 +92,10 @@ Route::middleware(['auth', 'platform.session'])->group(function () {
Route::get('/programmes', [ProgrammeController::class, 'index'])->name('programmes.index');
Route::get('/programmes/create', fn () => redirect()->route('events.create', ['type' => 'itinerary']))->name('programmes.create');
Route::get('/speakers', [SpeakerController::class, 'hub'])->name('speakers.index');
Route::get('/events/{event}/speakers', [SpeakerController::class, 'index'])->name('speakers.show');
Route::put('/events/{event}/speakers', [SpeakerController::class, 'update'])->name('speakers.update');
Route::get('/payouts', [PayoutsController::class, 'index'])->name('events.payouts');
Route::get('/wallet', fn () => redirect()->away(ladill_account_url('/wallet')))->name('account.wallet');