-
Manage Applications
- Home
- @if (request()->path() == 'level-first') Level First @elseif(request()->path() == 'level-second') Level Second @elseif(request()->path() == 'level-third') Level Third @elseif(request()->path() == 'level-fourth') Level Fourth @endif
@include('level.inner-nav')
@if (count($errors) > 0)
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
{{-- application payment table start --}}
{{-- application payment table end --}}
Applications
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) @else {{ $expiryDate->format('d-m-Y') }} @endif | visibility | @if (request()->path() == 'level-first') @elseif(request()->path() == 'level-second')@if ($item->status == 1) upload @endif @if ($item->status == 2) edit @endif | @elseif(request()->path() == 'level-third')visibility @if ($item->status == 1) upload @endif @if ($item->status == 2) edit @endif | @elseif(request()->path() == 'level-fourth')visibility | @endif
Modal title
...