@extends('admin.layouts.app') @section('title', __('admin.banned_emails.title')) @section('content')
@if(($bannedEmails ?? collect())->isEmpty())
{{ __('admin.banned_emails.no_banned') }}
@else @foreach($bannedEmails as $ban) @endforeach
{{ __('admin.banned_emails.email_domain') }}{{ __('admin.banned_emails.reason') }}{{ __('admin.banned_emails.banned_on') }}{{ __('common.table.actions') }}
{{ $ban->email }} {{ $ban->reason ?: '—' }} {{ $ban->created_at->format('d M Y') }}
@csrf @method('DELETE')
@endif
@endsection