@extends('layouts.admin') @section('title', 'Blocked Entities') @section('content_header')

Blocked Entities

@stop @section('content')

Manage Blocked IPs and Emails

Add New Block
@forelse($blockedEntities as $index => $entity) @empty @endforelse
# Type Value Reason Expires At Status Created Actions
{{ ($blockedEntities->currentPage() - 1) * $blockedEntities->perPage() + $index + 1 }} {{ strtoupper($entity->type) }} {{ $entity->value }} {{ $entity->reason ? Str::limit($entity->reason, 50) : 'No reason provided' }} @if($entity->expires_at) {{ $entity->expires_at->format('M d, Y H:i') }} @else Permanent @endif @if($entity->isActive()) Active @else Expired @endif {{ $entity->created_at->format('M d, Y') }} View Edit
@csrf @method('DELETE')
No blocked entities found.
@if($blockedEntities->hasPages()) @endif
@stop @section('css') {{-- Add any specific CSS for this page --}} @stop @section('js') @stop