Files
isaaccladandCursor 5fb2de31c8
Deploy Ladill QR Plus / deploy (push) Successful in 40s
Add mobile and desktop search for QR Plus.
Introduce a dedicated /search page, wire the bottom nav and topbar to it, and expose JSON results for live lookup of QR codes.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-07 15:37:58 +00:00

14 lines
472 B
PHP

<x-user-layout>
<x-slot name="title">Search</x-slot>
@include('partials.search-screen', [
'query' => $query,
'results' => $results,
'backUrl' => route('qr.dashboard'),
'searchUrl' => route('qr.search'),
'heading' => 'Find QR codes',
'placeholder' => 'Search QR codes, short codes, URLs…',
'emptyHint' => 'Use at least 2 characters to search labels, short codes, or destinations.',
])
</x-user-layout>