@extends('layouts.admin') @section('title', 'Newsletter Subscribers') @section('page-title', 'Newsletter Subscribers') @section('content')
{{-- Stats --}}

Total

{{ number_format($total) }}

Active

{{ number_format($active) }}

Unsubscribed

{{ number_format($total - $active) }}

{{-- Filter --}}
{{-- Table --}}
@forelse($subscribers as $subscriber) @empty @endforelse
Email Status IP Address Subscribed At Actions
{{ $subscriber->email }} {{ $subscriber->is_active ? 'Active' : 'Unsubscribed' }} {{ $subscriber->ip_address ?? '—' }} {{ $subscriber->created_at->format('d M Y, H:i') }}
@csrf
@csrf @method('DELETE')
No subscribers yet.
{{ $subscribers->links() }}
@endsection