@extends('frontend.layouts.app') @section('title-suffix') Confirmation @endsection @section('main-content')
{{ __('confirmation.success') }}

{{ __('confirmation.body-title-1') }}

  • {{ __('confirmation.order-number') }}

    : {{ $order_number ?? '' }} R.A.S
  • {{ __('Date') }}

    : {{ $date ?? '' }} R.A.S
  • {{ __('Total') }}

    : {{ $total ?? 0 }} FCFA
  • {{ __('confirmation.payment-method') }}

    : {{ $payment_method->method ?? '' }} R.A.S

{{ __('confirmation.body-title-2') }}

  • {{ __('confirmation.city') }}

    : {{ $city ?? '' }} R.A.S
  • {{ __('confirmation.state') }}

    : {{ $state ?? '' }} R.A.S
  • {{ __('confirmation.country') }}

    : {{ $country ?? '' }} R.A.S
  • {{ __('confirmation.zip') }}

    : {{ $postcode ?? '' }} R.A.S

{{ __('confirmation.body-title-3') }}

  • {{ __('confirmation.city') }}

    : {{ $city ?? '' }} R.A.S
  • {{ __('confirmation.state') }}

    : {{ $state ?? '' }} R.A.S
  • {{ __('confirmation.country') }}

    : {{ $country ?? '' }} R.A.S
  • {{ __('confirmation.zip') }}

    : {{ $postcode ?? '' }} R.A.S

{{ __('confirmation.body-title-4') }}

@if (!isset($products)) @else @foreach ($products as $key => $product) @endforeach @endif
{{ __('confirmation.thead-product') }} {{ __('confirmation.thead-quantity') }} {{ __('Total') }}
{{ __('confirmation.empty-order') }}
{{ $product['name'] }} {{ $product['quantity'] }} {{ $product['total'] }} FCFA
{{ __('confirmation.subtotal') }} {{ $subtotal ?? 0 }}
{{ __('confirmation.shipping') }} {{ __('confirmation.flat-rate-span') }}: {{ $shipping_cost ?? 0 }}
{{ __('Total') }}  {{ $total ?? 0 }} FCFA
@endsection