@if ($bans->total() == 0) {{ __('You haven\'t had any moderation action taken against you in the past. Hooray!') }} @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'))) : seconds2human($ban->expiry_date->timestamp - $ban->created_at->timestamp, true) }}
{{ $bans->links() }}
@endif