@extends('user.layouts.master') @push('css') @endpush @section('breadcrumb') @include('user.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("user.dashboard"), ] ], 'active' => __(@$page_title)]) @endsection @section('content')

{{ __('Transaction') }}

!
{{ __('Transaction Preview') }}
{{__('Subtotal')}}:
{{ get_amount($trade_offer->rate, $trade_offer->rateCurrency->code, get_wallet_precision($trade_offer->rateCurrency)) }}
{{ __('fees And Charges') }}:
{{ get_amount($total_charge, $trade_offer->rateCurrency->code, get_wallet_precision($trade_offer->rateCurrency)) }}
{{ __('You Will Pay') }}:
{{ get_amount($total_charge + $trade_offer->rate, $trade_offer->rateCurrency->code, get_wallet_precision($trade_offer->rateCurrency)) }}
{{ __('Seller will Pay') }}:
{{ get_amount($trade_offer->amount, $trade_offer->saleCurrency->code,get_wallet_precision($trade_offer->saleCurrency)) }}
@csrf
{{ __('Available Balance') }}: {{ get_amount($userWallet->balance,$userWallet->currency->code, get_wallet_precision($userWallet->currency)) }}
@if($basic_settings->user_pin_verification == true)
@include('user.components.modal.pin-check') @else
@endif
@endsection @push('script') @endpush