@component('mail::message')
# Hello, {{ $admin->name }}
Notified new order on system are below:
## Buyer Details
Name: {{ auth()->user()->name }}
Email: {{ auth()->user()->email }}
### Order Details
Order Reference No. {{$content['reference_no']}}
@foreach($content['items'] as $item)
**{{$item['number']}}. {{$item['name']}} {{$appCurrency['symbol'].$item['price']}}**
@endforeach
### Total Amount : {{$appCurrency['symbol']}} {{$content['total']}}
Thanks,
{{ config('app.name') }}
@endcomponent