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

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

@if($list->description)

{{ $list->description }}

@endif
@customercan('lists.permissions.can_edit_lists') Edit Settings @endcustomercan Manage Subscribers Forms
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) }}
Status
{{ ucfirst($list->status) }}
Opt-in Type
{{ ucfirst($list->opt_in) }}
From Name
{{ $list->from_name ?? 'N/A' }}
From Email
{{ $list->from_email ?? 'N/A' }}
Created
{{ $list->created_at->format('M d, Y') }}
Last Subscriber
{{ $list->last_subscriber_at ? $list->last_subscriber_at->format('M d, Y') : 'Never' }}
@endsection