@if ($logs->total() == 0)

{{ __('No records found') }}

{{ __('There were no matches available for your query') }}

@else
@foreach ($logs as $log) @endforeach
{{ __('Administrator') }} {{ __('Action') }} {{ __('Date') }}
{{ $log->format() }} {{ date('M d, Y g:i:s A', strtotime($log->created_at)) }}
{{ $logs->links() }}
@endif