@extends('layouts/apply_layout') @section('title') @endsection @section('navContent') @include('partials/_navUmsFinalStudent') @endsection @section('content')
Payment Fee
@if($advisorApproveStatus['status']=="approved")
Registration Approved! You may pay now
@else
Registration No Approved! You can not pay now
@endif
Warning: Undefined variable $advisorApproveStatus in /home/shikkhaplus/public_html/resources/views/students/viewRegistrationBackup.blade.php on line 46

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources/views/students/viewRegistrationBackup.blade.php on line 46
Registration No Approved! You can not pay now
Payment Details
Name : {{$personalInformation->fullName}} Email : {{$personalInformation->email}}
Phone Number : {{$personalInformation->mobileNo}} Address : {{$personalInformation->presentAddress}}
Registration Courses
@php $feeCount = 0; @endphp @foreach($registrationCourses as $course) @endforeach
Course Title Course Code Credit Hour Course Fee
{{$course->title}} {{$course->code}} {{$course->creditHour}} {{number_format($course->courseFeeAmount,2)}}
Total Course Fee: {{number_format($course->totalcourseFee,2)}}
Other Fees
@foreach($feeInformation as $fee) @php $feeCount+=$fee->amount; @endphp @endforeach
Fee Name Amount
{{$fee->name}} {{number_format($fee->amount,2)}}
Total Other Fee: {{number_format($feeCount,2)}}
Total Registration Fee Amount: {{number_format($registrationSummary['amount'],2)}}
Narration: Student Details
{{-- --}}
{{--
{{csrf_field()}}
--}}
{{csrf_field()}}
{{--
--}}
@endsection