@extends('admin.master_layout')
@section('title')
{{ __('Subscriber List') }}
@endsection
@section('admin-content')
{{ __('SN') }} |
{{ __('Email') }} |
{{ __('Subscribed at') }} |
{{ __('Action') }} |
@forelse ($newsletters as $index => $item)
{{ ++$index }} |
{{ html_decode($item->email) }} |
{{ $item->created_at->format('h:iA, d M Y') }} |
|
@empty
@endforelse
@push('js')
@endpush
@endsection