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

Subscribers

You have total {{ $subscribers->total() }} subscribers

{{-- Table Card --}}

Subscribers

@forelse($subscribers as $subscriber) @empty @endforelse
# Email Subscribe At Option
{{ $loop->iteration + ($subscribers->currentPage() - 1) * $subscribers->perPage() }} {{ Str::mask($subscriber->email, '*', 2, 1) }} {{ $subscriber->subscribed_at?->format('M d, Y h:i A') ?? '-' }}
@csrf @method('DELETE')

No subscribers found

Email subscribers will appear here

@if($subscribers->hasPages())
{{ $subscribers->links() }}
@endif
@endsection