{{__('app.detail')}}
{{ $list->name }}
{{ $list->group->name }}
{{ $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 ?? '---' }}
{{ $list->from_name ?? '---' }}
{{ $list->from_email ?? '---' }}
{{ $list->reply_email ?? '---' }}
{{ \App\Http\Helper\Helper::datetimeDisplay($list->created_at) }}
{{ __('app.custom_fields') }}
@php ($custom_fields = $list->customFields) @endphp @forelse($custom_fields as $custom_field)
{{ $custom_field->name }}
{{ ucfirst($custom_field->type) }}
@empty
{{ __('app.no_record_found') }}
@endforelse