@extends('layouts.app')
@section('content')
| SL |
Email |
Subscription Date |
Action |
@if (!empty($results) && $results->isNotEmpty())
@foreach ($results as $key => $row)
| {{ ++$key }} |
{{ $row->email }} |
{{ !empty($row->created) ? date('d F, Y', strtotime($row->created)) : '' }} |
@if (canAccess(['newsletter destroy']))
@endif
|
@endforeach
@endif
@endsection
@push('headerPartial')
@endpush
@push('footerPartial')
@endpush