@extends('backend.layouts.app') @section('title') {{ __('email_list') }} @endsection @section('content')

{{ __('email_list') }}

@if (userCan('newsletter.sendmail'))   {{ __('send_mail') }} @endif
@if ($emails->count() > 0) @if (userCan('newsletter.delete')) @endif @endif @forelse ($emails as $email) @if (userCan('newsletter.delete')) @endif @empty @endforelse
# {{ __('email') }} {{ __('subscriptions_date') }}{{ __('action') }}
{{ $loop->iteration }} {{ $email->email }} {{ date('d M, Y', strtotime($email->created_at)) }}
@method('DELETE') @csrf

{{ __('no_data_found') }}

@if ($emails->total() > $emails->perPage())
{{ $emails->links() }}
@endif
@endsection