@extends('layouts.app') @section('title', 'Select a payment method') @section('content')

Select a payment method


Total

{{ format_money($data['total']) }}
@if(isset($data['order_number']) && isset($data['order_link'])) Your order number is : {{ $data['order_number'] }} @endif
@if(isset($data['payment_options']['online']))

Online

@foreach($data['payment_options']['online'] as $option) {{ $option->name }} @endforeach
@endif @if(isset($data['payment_options']['offline']))

Offline

@foreach($data['payment_options']['offline'] as $option)
{{ $option->name }}
{{ $option->description }}
@endforeach
@endif @if($data['show_wallet_option'])

Wallet- Balance: {{ format_money(auth()->user()->wallet()->balance()) }}

@endif
@endsection