@extends('layouts.admin') @section('title', $list->name) @section('page-title', $list->display_name ?? $list->name) @section('content')

{{ $list->display_name ?? $list->name }}

{{ $list->description }}

@admincan('admin.lists.delete')
@csrf @method('DELETE') {{ __('Delete') }}
@endadmincan
{{ __('Total Subscribers') }}
{{ number_format($list->subscribers_count) }}
{{ __('Confirmed') }}
{{ number_format($list->confirmed_subscribers_count) }}
{{ __('Unsubscribed') }}
{{ number_format($list->unsubscribed_count) }}
{{ __('Bounced') }}
{{ number_format($list->bounced_count) }}
{{ __('Customer') }}
@if($list->customer) {{ $list->customer->full_name }} ({{ $list->customer->email }}) @else — @endif
{{ __('Status') }}
{{ __(ucfirst($list->status)) }}
{{ __('From Email') }}
{{ $list->from_email ?? __('N/A') }}
{{ __('From Name') }}
{{ $list->from_name ?? __('N/A') }}
{{ __('Created') }}
{{ $list->created_at->format('M d, Y H:i') }}
{{ __('Last Subscriber') }}
{{ $list->last_subscriber_at ? $list->last_subscriber_at->format('M d, Y H:i') : __('Never') }}
@if($list->subscribers->count() > 0)
@foreach($list->subscribers as $subscriber) @endforeach
{{ __('Email') }} {{ __('Name') }} {{ __('Status') }} {{ __('Subscribed') }}
{{ $subscriber->email }} {{ $subscriber->full_name }} {{ __(ucfirst($subscriber->status)) }} {{ $subscriber->created_at->format('M d, Y') }}
@endif
@endsection