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

Blocked Entity Details

@stop @section('content')

Blocked Entity Information

Edit
@csrf @method('DELETE')
ID
{{ $blockedEntity->id }}
Type
{{ strtoupper($blockedEntity->type) }}
Value
{{ $blockedEntity->value }}
Reason
{{ $blockedEntity->reason ?: 'No reason provided' }}
Expires At
@if($blockedEntity->expires_at) {{ $blockedEntity->expires_at->format('M d, Y H:i:s') }} @if($blockedEntity->expires_at->isFuture()) ({{ $blockedEntity->expires_at->diffForHumans() }}) @endif @else Permanent Block @endif
Status
@if($blockedEntity->isActive()) Active @else Expired @endif
Created At
{{ $blockedEntity->created_at->format('M d, Y H:i:s') }}
Updated At
{{ $blockedEntity->updated_at->format('M d, Y H:i:s') }}
@stop @section('css') {{-- Add any specific CSS for this page --}} @stop @section('js') {{-- Add any specific JS for this page --}} @stop