Add mobile and desktop search for Events.
Deploy Ladill Events / deploy (push) Successful in 29s

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:
isaacclad
2026-06-07 15:37:44 +00:00
co-authored by Cursor
parent 88e5276e68
commit 849617da85
9 changed files with 307 additions and 58 deletions
+2
View File
@@ -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');