{{ config('app.name') }}
{{ __('Thanks for shopping with us!') }}
{{ __('Hi there. Thank you for your order! Your order details are shown below for your reference :') }}
@foreach($items as $k => $item)
{{ mb_ucfirst($item['name']) }}
{{ price($item['price'], false) }}
@endforeach @if($fee > 0)
{{ __('Fee') }}
{{ price($fee, false) }}
@endif @if($discount > 0)
{{ __('Discount') }}
- {{ price($discount, false) }}
@endif @if($tax > 0)
{{ __('Tax') }}
{{ price($tax, false) }}
@endif
{{ __('Total') }}
{{ price($amount, false) }}
@if($exchange_rate != 1)
{{ __('Exchange rate') }} : {{ $exchange_rate }}
@endif
{{ __('Reference ID') }} : {{ $reference_id ?? null }}
{{ __(':app_name © :year All right reserved', ['app_name' => config('app.name'), 'year' => date('y')]) }}