Introduce a dedicated /search page, wire the bottom nav and topbar to it, and expose JSON results for live lookup of events and programmes. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -13,6 +13,7 @@ use App\Http\Controllers\Qr\AfiaController;
|
||||
use App\Http\Controllers\Qr\DeveloperController;
|
||||
use App\Http\Controllers\Qr\QrCodeController;
|
||||
use App\Http\Controllers\Qr\TeamController;
|
||||
use App\Http\Controllers\SearchController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', fn () => auth()->check()
|
||||
@@ -43,6 +44,7 @@ Route::middleware(['auth'])->group(function () {
|
||||
|
||||
Route::get('/dashboard', [OverviewController::class, 'index'])->name('events.dashboard');
|
||||
Route::post('/afia/chat', [AfiaController::class, 'chat'])->name('events.afia.chat');
|
||||
Route::get('/search', SearchController::class)->name('events.search');
|
||||
|
||||
Route::get('/events', [QrCodeController::class, 'index'])->name('events.index');
|
||||
Route::get('/events/create', [QrCodeController::class, 'create'])->name('events.create');
|
||||
|
||||
Reference in New Issue
Block a user