@extends('layouts.app') @section('title') payment-transcations Lists @endsection @section('content')
Payment Transcations Lists Total : {{ $PaymentTranscationsCount ? $PaymentTranscationsCount : 0 }}

Clear
@if (count($PaymentTranscations) > 0) @foreach ($PaymentTranscations as $key => $PaymentTranscation) @endforeach @else @endif
S.No Application No Invoice Code Payment Amount Payment Status Payment Gateway Action
{{ $key + 1 }} {{ @$PaymentTranscation->ApplicationNumber ? $PaymentTranscation->ApplicationNumber : null }} {{ @$PaymentTranscation->InvoiceCode ? $PaymentTranscation->InvoiceCode : null }} {{ @$PaymentTranscation->PaidAmount ? $PaymentTranscation->PaidAmount : null }} {{ @$PaymentTranscation->PaymentStatus ? $PaymentTranscation->PaymentStatus : null }} {{ @$PaymentTranscation->GatewayName ? $PaymentTranscation->GatewayName : null }} @if(@$PaymentTranscation->PaymentStatus=='Failure' AND !empty(@$ConfigSetting->PaymentURL)) @else - @endif
No Data Found !!
@if (count($PaymentTranscations) > 0) {!! $PaymentTranscations->appends(request()->query())->links('pagination::bootstrap-4') !!} @endif
@endsection @push('js') @endpush