@include('emails.commonkua.header') @component('emails.common.table') @component('emails.common.tr') @component('emails.common.td') @component('emails.common.p') Hello {{ $agent->full_name ?? ($agent->first_name ?? 'Agent') }}, @endcomponent @component('emails.common.p') Thank you for submitting your sales forms to Client Branch. We have received your submission, and it is now under review. @endcomponent @component('emails.common.p') Sales Submissions received today are for the following Customers: @endcomponent @component('emails.common.table_with_border') @component('emails.common.tr') {!! 'Customer name' !!} {!! 'Product' !!} {!! 'Sale amount' !!} @endcomponent @foreach ($sales as $lead) @component('emails.common.tr') {!! '' . e($lead->customer_name ?? ($lead->business_name ?? '—')) . '' !!} {!! '' . e($lead->product_name ?? '—') . '' !!} @php $amount = isset($lead->sales_amount) ? number_format((float) $lead->sales_amount, 2) : '—'; @endphp {!! '' . e($amount) . '' !!} @endcomponent @endforeach @endcomponent @component('emails.common.p') Click this Link to view more details of the sales: Click Here @endcomponent @component('emails.common.p') Our team will verify the details and process it accordingly. Should we need any clarification, we will reach out to you directly. @endcomponent @component('emails.common.p') Empowering People. Bridging Markets. Driving Growth. @endcomponent @endcomponent @endcomponent @component('emails.common.tr') @component('emails.common.td') @component('emails.commonkua.secondary_footer') {{-- noQuote --}} @endcomponent @endcomponent @endcomponent @endcomponent @include('emails.commonkua.footer')