{{ session::get('fail') }}
@endif
@if (Session::has('error'))
{{ session::get('error') }}
@elseif(Session::has('fail'))
{{ session::get('fail') }}
@endif
National Application
Sr.No | Level | Application No. | Courses | Total Fee | Payment Date | Status | Action | |
---|---|---|---|---|---|---|---|---|
{{ $k + 1 }} | {{ $item->level_id ?? '' }} | {{ $item->application_uid }} | {{ $item->courses->count() ?? '' }} | @php $totalAmount = 0; $paymentNumbers = []; @endphp @foreach ($item->payments as $payment) @php $totalAmount += $payment->amount; $paymentNumbers[] = $loop->iteration; @endphp @if ($loop->iteration == 1) {{ $payment->currency }} @endif @endforeach @if ($totalAmount !== 0) {{ $totalAmount }}({{ implode(', ', $paymentNumbers) }}) @endif | {{ \Carbon\Carbon::parse($item->payment->payment_date ?? '')->format('d-m-Y') }} |
@php
$availableReport = checkReportAvailableOrNot($item->id);
@endphp
@if (totalDocumentsCount($item->id) > 0)
@if ($availableReport != null)
Application In
Processing
@else
Application In
Processing
@endif
@if (auth()->user()->role == 1)
@if ($item->is_payment_acknowledge != 1 || $item->is_payment_acknowledge == null)
@endif
@endif
@else
@php
$payment = $item->payment;
$isAdmin = auth()->user()->role == 1;
$url = $isAdmin ? url("admin/application/courses-list/{$item->id}") : '#';
$reportAvailable = $availableReport != null;
@endphp
@if ($payment)
@php
$status = $payment->status;
@endphp
@if ($status == '0' || $status == '1' || $status == '2')
@php
$bgClass = $status == '0' ? 'bg-danger' : ($status == '1' ? 'bg-warning' : 'bg-primary');
$textClass = $status == '2' ? 'text-white' : 'text-light';
$displayText = $status == '0' ? 'Payment Pending' : ($status == '1' ? 'Payment Process' : 'Payment Approved');
@endphp
{{ $displayText }}
@if (auth()->user()->role == 1 && $status == '2')
{{-- Display button only when payment is approved --}}
@if ($item->is_payment_acknowledge != 1 || $item->is_payment_acknowledge == null)
@endif
@endif
@endif
@else
Payment Pending
@endif
@endif
|
@if (Auth::user()->role == 6)
visibility | @endif @if (Auth::user()->role == 1)visibility @php $total_documents = 4; @endphp {{-- @if (totalDocumentsCount($item->id) >= totalQuestionsCount($item->id)) --}} @if (totalDocumentsCount($item->id) >= $total_documents && $item->acknowledged_by != null && $item->is_payment_acknowledge == 1) @if (in_array(checktppaymentstatustype($item->id), [2, 3])) @endif @if (in_array(checktppaymentstatustype($item->id), [2, 3])) @endif @endif | @endif {{-- popup form --}} @if (Auth::user()->role != 6)