@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() }}
@endif
@endforeach
@endif
@endsection