@extends('layout.base') @section('layout.base.header')

{{ __( 'Payment Successful' ) }}

{{ __( 'Your payment has been processed successfully.' ) }}

@endsection @section('layout.base.body')

{{ __( 'Payment Completed!' ) }}

{{ __( 'Thank you for your payment.' ) }}

{{ __( 'Order: :order', ['order' => $order->code] ) }}
{{ __( 'Transaction: :ref', ['ref' => $transaction_ref]) }}

@if( isset($order->gastro_table) )

{{ __( 'Order Details' ) }}

{{ __( '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)]) }}

@endif
@if( isset($return_url) ) {{ __( 'Back to Table Bill' ) }} @endif

{{ __( 'Payment processed on :date', ['date' => now()->format('M d, Y \a\t H:i')]) }}

{{ __( 'Keep this confirmation for your records.' ) }}

@endsection