@extends('admin.master_layout')
@section('title')
{{ __('Subscriber List') }}
@endsection
@section('admin-content')
| {{ __('SN') }} |
{{ __('Email') }} |
{{ __('Subscribed at') }} |
@adminCan('newsletter.delete')
{{ __('Action') }} |
@endadminCan
@forelse ($newsletters as $index => $item)
| {{ ++$index }} |
{{ html_decode($item->email) }} |
{{ formattedDateTime($item->created_at) }} |
@adminCan('newsletter.delete')
|
@endadminCan
@empty
@endforelse
@adminCan('newsletter.delete')
@endadminCan
@endsection