@extends('layouts.admin') @section('title', 'IP bị cấm - MU Admin Panel') @section('styles') @endsection @section('content')

🚫 Danh sách IP bị cấm ({{ $bannedIps->total() }} records)

@if($bannedIps->count() > 0)
@foreach($bannedIps as $bannedIp) @endforeach
IP Address Lý do Admin cấm Thời gian cấm Hết hạn Hành động
{{ $bannedIp->ip_address }}
{{ $bannedIp->reason }}
{{ strtoupper(substr($bannedIp->admin_username, 0, 2)) }}
{{ $bannedIp->admin_username }}
{{ date('d/m/Y H:i', strtotime($bannedIp->banned_at)) }} @if($bannedIp->expires_at) {{ date('d/m/Y H:i', strtotime($bannedIp->expires_at)) }} @else Vĩnh viễn @endif
👁️ Chi tiết
@csrf
{{ $bannedIps->appends(request()->query())->links('pagination.custom') }} @else

🚫 Chưa có IP nào bị cấm

Danh sách IP bị cấm sẽ hiển thị ở đây

@endif
@endsection