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

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

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

@else
@foreach ($bans as $ban) @endforeach
{{ __('IP Address') }} {{ __('Identifier') }} {{ __('Internal Reason') }} {{ __('In Effect') }} {{ __('Moderator') }} {{ __('Pardoner') }} {{ __('Reviewed On') }}
{{ $ban->ip_address }} {{ $ban->criterium }} {!! is_null($ban->internal_reason) ? __('No reason specified.') : '' . e($ban->internal_reason) . '' !!} {!! ($ban->is_active ? __('Active') : __('Inactive')) !!} {{ $ban->created_at->format('m/d/Y') }}
{{ $bans->links() }}
@endif