@extends('layouts.app') @section('title', 'SAM Bans') @section('content')
View and manage player bans from your game servers
| Player | SteamID | Reason | Admin | Duration | Status | Actions |
|---|---|---|---|---|---|---|
{{ $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 |