{{ __('Blocked IPs') }}
{{ __('Manage blocked IP addresses and access restrictions.') }}
{{ __('Block New IP Address') }}
{{ __('Blocked IP Directory') }}
{{ __('Showing') }} {{ $blockedIps->count() }} {{ __('of') }} {{ $blockedIps->total() }} {{ __('blocked IPs.') }}
| {{ __('IP Address') }} | {{ __('Reason') }} | {{ __('Blocked By') }} | {{ __('Status') }} | {{ __('Blocked Until') }} | {{ __('Created') }} | {{ __('Actions') }} | |
|---|---|---|---|---|---|---|---|
| {{ $blocked->ip_address }} | {{ $blocked->reason ?? '-' }} | {{ $blocked->blocked_by ?? __('System') }} | @if($isPermanent) {{ __('Permanent') }} @elseif($isExpired) {{ __('Expired') }} @else {{ __('Active') }} @endif | @if($isPermanent) {{ __('Never') }} @else {{ \Carbon\Carbon::parse($blocked->blocked_until)->format('M j, Y H:i') }} @endif | {{ \Carbon\Carbon::parse($blocked->created_at)->format('M j, Y') }} |
|
|
| {{ __('No blocked IPs found.') }} | |||||||