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

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

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

@else
@foreach ($bans as $ban) @endforeach
{{ __('User') }} {{ __('Details') }} {{ __('In Effect') }} {{ __('Moderator') }} {{ __('Pardoner') }} {{ __('Reviewed On') }} {{ __('Duration') }}
{!! ($ban->is_active ? __('Active') : __('Inactive')) !!} {{ $ban->created_at->format('m/d/Y') }} {{ is_null($ban->expiry_date) ? ($ban->is_poison_ban ? __('Poison') : ($ban->is_warning ? __('Warning') : __('Termination') )) : seconds2human($ban->expiry_date->timestamp - $ban->created_at->timestamp, true) }}
{{ $bans->links() }}
@endif