@extends('layouts.admin') @section('content') @if($q === '')
Type in the search box above to find engineers, users, jobs, transactions and tickets.
@else @php $any = collect($results)->contains(fn($r) => $r->count() > 0); @endphp @if(!$any)
Nothing matched “{{ $q }}”.
@endif @foreach($results as $group => $items) @if($items->count())
{{ $group }} {{ $items->count() }}
@foreach($items as $r)@endforeach
{{ $r['title'] }}
{{ $r['sub'] }}
{!! \App\Support\Ui::status($r['status']) !!}
@endif @endforeach @endif @endsection