{{-- resources/views/admin/subscribers/index.blade.php --}} @extends('admin.layouts.admin') @section('title','Newsletter Subscribers') @section('page-title','Newsletter Subscribers') @section('admin-content')
Total {{ $total }}
Active {{ $active }}
Export CSV
@forelse($subscribers as $s) @empty @endforelse
EmailNameSourceSubscribedStatus
{{ $s->email }} {{ $s->name ?? '—' }} {{ $s->source }} {{ $s->subscribed_at->format('d M Y') }} @if($s->isActive()) Active @else Unsubscribed @endif
No subscribers yet.
@if($subscribers->hasPages())
{{ $subscribers->links() }}
@endif @endsection