{{ __('Thanks for your order') }}

{{ __('Hello,') }}

{{ __('Thank you for your order at :app!', ['app' => config('app.name')]) }}

{{ __('Order number:')}} {{$order->uuid}}

@php($index = 1) @foreach ($order->items as $item)
#{{ $index++ }}
{{ $item->oneTimeProduct->name }}
@if ($item->oneTimeProduct->description)
{{$item->oneTimeProduct->description}}
@endif
{{ __('Quantity:') }} {{ $item->quantity }}
@endforeach
{{ __('Total') }} @money($order->total_amount, $order->currency->code)

{{ __('Our support team is here to assist you with any questions or concerns. Feel free to reach out to us at ') }} {{ config('app.support_email') }} .

{{ __('Sincerely,') }}
{{ config('app.name') }} {{ __('Team') }}