@extends('layouts.app') @section('title') All Brands @endsection @section('content')
Payment
Registration Application Payment
@if(Auth::user()->PhysicalDisability == 3)
@csrf @php $postID = getPostIdCandidate(); @endphp @if(!empty($postID))
Name {{ @Auth::user()->CandidateName }}
Application Number {{ @Auth::user()->ApplicationNumber }}
Amount ₹ {{ getTotalFeeAmount() }}
Apply For POST {{ getPostNameApplied($postID); }}
@endif
@endif
@if(!empty($queryLists)) @php $i=1; @endphp @foreach($queryLists as $queryList) @php $GetPostName = getPostNameAppliedByID($queryList->PostID); @endphp @php $i++; ;@endphp @endforeach @endif
Sr. No. Order ID Transcation ID Post Exam Fee Paid Amount Payment Gateway Payment Submit Date Payment Status
{{ $i }} {{ $queryList->InvoiceCode }} {{ (!empty($queryList->TranscationID) && $queryList->TranscationID != 'null') ? $queryList->TranscationID : "-" }} {{ $GetPostName['postName'] }} {{ $queryList->ActualExamFee }} {{ $queryList->PaidAmount }} @if($queryList->PaidAmount > 0) HDFC @else - @endif {{ date('d-m-Y', strtotime($queryList->PaymentSubmitDate)) }} {{ $queryList->PaymentStatus }}
@endsection @push('js') @endpush