Files
ladill-hosting/resources/views/search.blade.php
isaaccladandCursor b7b9e5ef05
Deploy Ladill Hosting / deploy (push) Successful in 27s
Add a mobile search page for Hosting.
Return an HTML search screen from /search for browser visits and point the bottom nav Search tab at it instead of the dashboard.

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

16 lines
522 B
PHP

@extends('layouts.hosting')
@section('title', 'Search')
@section('content')
@include('partials.search-screen', [
'query' => $query,
'results' => $results,
'backUrl' => route('hosting.dashboard'),
'searchUrl' => route('hosting.search'),
'heading' => 'Find hosting accounts and orders',
'placeholder' => 'Search domains, usernames, orders…',
'emptyHint' => 'Use at least 2 characters to search hosting accounts, linked domains, or orders.',
])
@endsection