@extends('admin.layouts.admin') @section('page-title','Newsletter Subscribers') @section('content') {{-- ================= ACTION BAR ================= --}}
📤 Export CSV 🧠 AI Segmentation
Total Subscribers: {{ $subscribers->total() }}
{{-- ================= GROWTH ANALYTICS ================= --}}
Today

{{ $stats['today'] }}

This Week

{{ $stats['week'] }}

This Month

{{ $stats['month'] }}

Unsubscribed

{{ $stats['unsubscribed'] }}

{{-- ================= SUBSCRIBERS TABLE ================= --}}
@forelse($subscribers as $sub) @empty @endforelse
Email Source IP Subscribed Status Action
@if($sub->is_active) @endif {{ $sub->email }} {{ $sub->source ?? 'website' }} {{ $sub->ip_address }} {{ $sub->created_at->format('d M Y') }} @if($sub->is_active) Active @else Unsubscribed @endif @if($sub->is_active)
@csrf @method('PATCH')
@endif
No subscribers found
{{ $subscribers->links() }}
{{-- ================= SEND EMAIL MODAL ================= --}} @endsection {{-- ================= SCRIPTS ================= --}} @push('scripts') @endpush