Choose which emails you would like to send to your customers
@if(($templates ?? collect())->isEmpty())
| No eligible email templates found. |
@else
| Email |
Send |
@foreach($templates as $row)
@php
$name = $row->template_name ?? '—';
$on = (bool) ($row->trigger_status ?? false);
@endphp
| {{ $name }} |
|
@endforeach
@endif