@extends(view_path('master')) @section('additional_head_tags') @endsection @section('body')
{{ __('Order created') }}
{{ __('Please confirm your order') }}
{{ __('Order summary') }}
@foreach($transaction->details->items ?? [] as $key => $item)
{{ __($item->name) }}
{{ price($item->value, 0) }}
@endforeach
{{ __('Total due amount') }}
{{ price($transaction->details->custom_amount ?? $transaction->details->total_amount, 0) }}
{!! bbcode_to_html(config('payments_gateways.offlinepayment.instructions'), nl2br:true) !!}
@endsection