@include('layout.header') RAV Accreditation @if (Session::has('success')) @elseif (Session::has('fail')) @elseif (Session::has('payment_fail')) @elseif (Session::has('warning')) @endif
@include('layout.topbar')
@if (Auth::user()->role == '1') @include('layout.sidebar') @elseif(Auth::user()->role == '2') @include('layout.siderTp') @elseif(Auth::user()->role == '3') @include('layout.sideAss') @elseif(Auth::user()->role == '4') @include('layout.sideprof') @endif @include('layout.rightbar')
@include('level.inner-nav')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- application payment table start --}}

Applications

@isset($collection) @foreach ($collection as $k => $item) @if (request()->path() == 'level-first') @elseif(request()->path() == 'level-second') @elseif(request()->path() == 'level-third') @elseif(request()->path() == 'level-fourth') @endif @endforeach @endisset
Sr.No Application No Level ID Courses Total Fee Payment Date Status Upgrade Action
{{ $k + 1 }} {{ $item->application_uid }} {{ $item->level_id }} {{ count($item->courses) }} @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 {{ $totalAmount }}({{ implode(', ', $paymentNumbers) }}) {{ \Carbon\Carbon::parse($item->payment->payment_date)->format('d-m-Y') }} status == 0)
Applications Pending
@elseif($item->status == 1)
Applications In Process
@elseif($item->status == 2)
Applications In Process
@endif
@php $createdDate = \Carbon\Carbon::parse($item->created_at); $expiryDate = $createdDate->addYear(); $currentDate = \Carbon\Carbon::now(); // Calculate the difference in days between the current date and the expiry date $daysRemaining = $currentDate->diffInDays($expiryDate); @endphp @if ($daysRemaining <= 15)
@csrf
@else {{ $expiryDate->format('d-m-Y') }} @endif
visibility @if ($item->status == 1) upload @endif @if ($item->status == 2) edit @endif visibility @if ($item->status == 1) upload @endif @if ($item->status == 2) edit @endif visibility
{{-- application payment table end --}}
@include('layout.footer')