Deploy Ladill Servers / deploy (push) Successful in 29s
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>
16 lines
510 B
PHP
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
|