{{ __('app.list_details') }}

{{ __('app.total_contacts') }}

{{ $list->contacts->count() }}

{{ __('app.active_contacts') }}

{{ $list->contacts()->where('is_active', 1)->count() }}

{{ __('app.confirmed_contacts') }}

{{ $list->contacts()->where('is_confirmed', 1)->count() }}

{{ __('app.verified_contacts') }}

{{ $list->contacts()->where('is_verified', 1)->count() }}

{{ __('app.unsubscribed_contacts') }}

{{ $list->contacts()->where('is_unsubscribed', 1)->count() }}
{{ __('app.basic_information') }}
{{ $list->name }}
{{ $list->group->name }}
{{ \App\Http\Helper\Helper::datetimeDisplay($list->created_at) }}
{{ __('app.email_settings') }}
{{ $list->double_optin == 'Yes' ? __('app.yes') : __('app.no') }}
{{ $list->welcome_email == 'Yes' ? __('app.yes') : __('app.no') }}
{{ $list->unsub_email == 'Yes' ? __('app.yes') : __('app.no') }}
{{ $list->notify_email ?? '---' }}
{{ __('app.sender_information') }}
{{ $list->from_name ?? '---' }}
{{ $list->from_email ?? '---' }}
{{ $list->reply_email ?? '---' }}
{{ __('app.custom_fields') }}
@php ($custom_fields = $list->customFields) @endphp @forelse($custom_fields as $custom_field)
{{ ucfirst($custom_field->type) }}
@empty
{{ __('app.no_custom_fields') }}

{{ __('app.no_custom_fields_description') }}

@endforelse