{{ 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']) }}
{{ $item['value'] }}
@endforeach
{{ __('Total') }}
{{ $currency.' '.$total_amount }}
@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')]) }}