@component('mail::message')
Hi {{ $order->user->fname }},
Thank you for shopping on expomedics.com
Your order #{{ep_get_invoice_id($order->id)}} placed on {{ date('d/m/Y H:i',strtotime($order->created_at)) }} has been accepted and dispatched.
The Credit Card used for this purchase has been charged today for the total amount of EUR {{ $order->price->amount }}.
# Here is your service summary
# {{ $order->plan->name }} - {{ $order->price->name }}
@foreach($order->price->items()->orderBy('sort')->get() as $item)
- {!! $item->name !!}
@endforeach
@include('emails.inc.plan_purchase.product_details')
@include('emails.inc.plan_purchase.contact_person')
@include('emails.inc.plan_purchase.billing_details')
@include('emails.inc.plan_purchase.total')
@lang('Best Regards'),
{{ config('app.name') }} Team
@endcomponent