@extends('layouts.admin') @section('content')
Total Active Subscribers: {{ $subscribers->total() }}
| Status | Subscribed | Actions | |
|---|---|---|---|
| {{ $subscriber->email }} | @if($subscriber->is_active) Active @else Inactive @endif | {{ $subscriber->created_at->format('d M Y') }} | @include('partials.admin-actions', ['actions' => [ ['type' => 'copy', 'label' => 'Copy email', 'icon' => 'fa-copy', 'value' => $subscriber->email, 'done' => 'Email copied: '.$subscriber->email], ['type' => 'form', 'label' => 'Remove', 'icon' => 'fa-trash', 'url' => route('admin.newsletter.delete', $subscriber->id), 'method' => 'DELETE', 'danger' => true, 'confirm' => ['title' => 'Remove Subscriber?', 'message' => 'This will permanently remove this subscriber.', 'confirmText' => 'Yes, Remove']], ]]) |
Newsletter subscribers will appear here once visitors sign up via the website footer.