@extends('layout.base') @section('layout.base.header')
{{ __( 'Your payment has been processed successfully.' ) }}
{{ __( 'Thank you for your payment.' ) }}
{{ __( 'Order: :order', ['order' => $order->code] ) }}
{{ __( 'Transaction: :ref', ['ref' => $transaction_ref]) }}
{{ __( 'Table: :table', ['table' => $order->gastro_table->name]) }}
@if( $order->gastro_table->area ){{ __( 'Area: :area', ['area' => $order->gastro_table->area->name]) }}
@endif{{ __( 'Order Code: :code', ['code' => $order->code]) }}
{{ __( 'Amount Paid: :amount', ['amount' => ns()->currency->define($order->total)]) }}
{{ __( 'Payment processed on :date', ['date' => now()->format('M d, Y \a\t H:i')]) }}
{{ __( 'Keep this confirmation for your records.' ) }}