@include('admin.includesV2.adminHeader',
[
'pageRoute' => route('courseRegistration'),
'pageName' => 'Coure Registration List',
'pageHeader'=> 'Applicaton Details',
'htmlElement' => '',
])
';
}
}
}
//if(!isset($formGroups[$key+1]))
//echo ''; // printa a div after last element to completed the div structure
}
@endphp
@if($formData->signature)
@endif
@if(!$paymentDetails->isEmpty())
@endif
@if($courseDetails)
@endif
@if($studentInfo)
{{$courseDetails->courseTitle}}
@include('admin.includesV2.studentProfileForm', ['pageViewType' => 'readView'])
{{-- @include('frontend.include.studentProfileFormBlock', ['pageViewType' => 'readView']) --}}
@endif
Payment Info
Date | Transaction ID | Status | Course Fee | Paid Amount | Fee Status | Remarks |
---|---|---|---|---|---|---|
{{$payment->payment_date != null ? \Carbon\Carbon::parse($payment->payment_date)->format('d M Y h:i:s A') : 'NA'}} | {{$payment->transaction_id !=null ? $payment->transaction_id:'NA'}} | {{$payment->status !=null ? $payment->status : 'NA'}} | {{$payment->courseFee}} | {{$payment->transactionAmount!=null ? $payment->transactionAmount:'NA'}} | @php $paymentStatus = (array) $paymentStatus; @endphp {{ $paymentStatus[strtolower($payment->paid_status)] ?? 'Status not found' }} {{$paymentStatus[strtolower($payment->paid_status)]}} @php if($paymentStatus[strtolower($payment->paid_status)]=='DUE'){ $dueAmount = $payment->courseFee-$payment->paid_amount; echo ' - '.$dueAmount; } @endphp | {{$payment->remarks != "" ? $payment->remarks : "N/A"}} {{-- --}} |