Hello {{ $first_name }},
This email is your receipt for purchases from Salonspa Connection Brokerage.
Email for: {{ $seller_email }}
Assigned Broker: {{ $broker_email ?? 'N/A' }}
Thank you for purchasing the following service(s):
|
Item
|
Qty
|
Price
|
@foreach($items as $item)
|
{{ $item['name'] }}
|
{{ $item['qty'] }}
|
${{ number_format($item['total'], 2) }}
|
@endforeach
Total Amount: ${{ number_format($total_amount, 2) }}
If you have any questions or need further assistance, please don't hesitate to reach out.
@include('emails.partials.signature')
|