@extends('layouts.user') @section('title') @lang('Confirm Deposit') @endsection @section('breadcrumb') @lang('Confirm Deposit') @endsection @section('content')
@lang('Payment Details')
@if (Session::has('errors'))
@endif
@csrf
@lang('Total Payment') : {{$currency->symbol.$deposit_data['amount']}} @if ($charge) @lang('Total Charge') : {{$currency->symbol.numFormat($charge,2)}} @endif @lang('Payment Method') : {{$gateway->name}} @include('other.payment_load')
@php $paystack = []; if(Session::get('deposit_data')['keyword'] == 'paystack'){ $paystack = $gateway->convertAutoData(); } if(Session::get('deposit_data')['keyword'] == 'mercadopago'){ $paydata = $gateway->convertAutoData(); } @endphp @endsection @push('script') @if(Session::get('deposit_data')['keyword'] == 'mercadopago') @endif @endpush