@extends('layouts.app') @section('title', 'SAM Bans') @section('content')

SAM Bans Management

View and manage player bans from your game servers

{{ number_format($stats['total_bans']) }}
Total Bans
{{ number_format($stats['active_bans']) }}
Active Bans
{{ number_format($stats['expired_bans']) }}
Expired Bans
{{ number_format($stats['permanent_bans']) }}
Permanent
per page
@if($bans->count() > 0)
@foreach($bans as $ban) @endforeach
Player SteamID Reason Admin Duration Status Actions
{{ $ban->player_name ?: $ban->player_name ?: 'Unknown Player' }}
@if($ban->steamid64) @endif
{{ $ban->steamid }}
{{ Str::limit($ban->formatted_reason, 50) }}
{{ $ban->admin_name ?: $ban->admin }}
@if($ban->is_permanent) Permanent @elseif($ban->is_active) {{ $ban->time_remaining }} @else Expired @endif
@switch($ban->status) @case('permanent') Permanent @break @case('active') Active @break @case('expired') Expired @break @endswitch
@if($ban->steamid64) @endif
{{ $bans->links('sambans::partials.pagination') }}
@else
No bans found
@if($search) No bans match your search criteria. Try adjusting your search terms. @else No bans found for the selected filter. @endif
@if($search) @endif
@endif
@endsection