@foreach($transaction->details->items ?? [] as $key => $item)
@endforeach
{{ __($item->name) }}
{{ price($item->value, 0) }}
{{ __('Total due amount') }}
{{ price($transaction->details->custom_amount ?? $transaction->details->total_amount, 0) }}
{{ __('Order number') }} : {{ $transaction->reference_id }}
{!! __('If you have questions about your order, please email us at :admin_email', ['admin_email' => config('app.email')]) !!}