@extends('layouts.front.app') @section('title', 'Search History') @section('content')

Search History

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