@forelse($all_histories as $history) @empty @endforelse
{{ __('Job') }} {{ __('Status') }} {{ __('Rejects') }} {{ __('Edits') }}
{{ $history->job?->title ?? '—' }} @php $status = $history->job?->status; @endphp @if($status == 1) {{ __('Active') }} @elseif($status == 2) {{ __('Rejected') }} @else {{ __('Inactive') }} @endif {{ $history->reject_count }} {{ $history->edit_count }} @can('job-details') @endcan
{{ __('No job history found.') }}
@include('backend.layout.partials.paginator', ['paginator' => $all_histories, 'label' => __('records')])