Files
ladill-servers/resources/views/search.blade.php
T
isaaccladandCursor fc58c9d40d
Deploy Ladill Servers / deploy (push) Successful in 29s
Add a mobile search page for Servers.
Return an HTML search screen from /search for browser visits so the bottom nav Search tab opens a usable lookup UI instead of raw JSON.

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

16 lines
510 B
PHP

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