@extends('seller.layouts.app') @section('main_content')

{{translate("Deposit Preview")}}

{{$title}}

  • {{translate("Amount")}} {{short_amount($log->amount)}}
  • {{translate("Charge")}} {{short_amount($log->charge)}}
  • {{translate("Payable")}} {{short_amount($log->amount + $log->charge)}}
  • {{translate("In")}} {{$log->paymentGateway->currency->name}} {{show_amount(round($log->final_amount),$log->paymentGateway->currency->symbol)}}

{{translate("Payment Method")}}

{{$method->name}}
{{$method->name}}
@php $paymnetGateway = $log->paymentGateway; $paymentParams = $paymnetGateway->payment_parameter; @endphp
@csrf
@foreach ($paymentParams as $param)
@if($param->type == 'text' || $param->type == 'date' || $param->type == 'email') is_required ? "required" :"" }} > @else @endif
@endforeach
@endsection