@extends('appshell::layouts.private') @section('title') {{ $list->name }} - {{ __('Subscribers') }} @stop @section('content')
{{ __('Back to Lists') }}
@forelse($emails as $entry) @empty @endforelse
{{ __('Email') }} {{ __('Name') }} {{ __('Status') }} {{ __('Source') }} {{ __('Created') }}
{{ $entry->email }} {{ $entry->first_name }} {{ $entry->last_name }} @if($entry->subscribed) {{ __('Subscribed') }} @else {{ __('Pending') }} @endif {{ $entry->source }} {{ show_datetime($entry->created_at) }} @if(!$entry->subscribed)
@csrf
@endif
@csrf @method('DELETE')
{{ __('No subscribers found') }}
{{ $emails->links() }}
@stop