Search History
@if($history->total() > 0)
@endif
@if(session('status'))
{{ session('status') }}
@endif
@if($history->isEmpty())
You have no
{{ $activeTab ? ucwords(str_replace('_', ' ', $activeTab)) . ' ' : '' }}search history yet.
@else
| Category |
Search Keyword |
Results |
Date & Time |
Action |
@foreach($history as $row)
@include('users.partials._search_history_row', ['row' => $row])
@endforeach
{{ $history->links('users.partials._pagination') }}
@endif
@endsection