@if ($bans->total() == 0) {{ __('This user has not had moderation action taken against them in the past.') }} @else
@foreach ($bans as $ban) @endforeach
{{ __('Moderator note') }} {{ __('Reviewed on') }} {{ __('Expiry date') }}
{{ $ban->moderator_note }} {{ $ban->created_at->format('m/d/Y h:i:s A (T)') }} {{ is_null($ban->expiry_date) ? ($ban->is_poison_ban ? __('Poison') : ($ban->is_warning ? __('Warning') : __('Termination') )) : collapseSeconds($ban->expiry_date->timestamp - $ban->created_at->timestamp) }}
{{ $bans->links() }}
@endif