@extends('layouts.admin') @section('title', __('Email Lists')) @section('page-title', __('Email Lists')) @section('content')
| {{ __('Name') }} | {{ __('Customer') }} | {{ __('Subscribers') }} | {{ __('Status') }} | {{ __('Created') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
|
@if($list->description)
{{ Str::limit($list->description, 50) }}
@endif
|
{{ $list->customer?->full_name ?? '—' }}
{{ $list->customer?->email ?? '—' }}
|
{{ number_format($list->subscribers_count) }}
{{ number_format($list->confirmed_subscribers_count) }} {{ __('confirmed') }}
|
{{ __(ucfirst($list->status)) }} | {{ $list->created_at->format('M d, Y') }} |
|
| {{ __('No email lists found.') }} | |||||