@extends('layouts/apply_layout') @section('title') @endsection @section('navContent') @include('partials/_navUmsFinalStudent') @endsection @section('content')
@if($registrationSummary)
Payment Fee
{{--
@if($advisorApproveStatus['status']=="approved")
Registration Approved! You may pay now
@else
Registration No Approved! You can not pay now
@endif
@if($isPaid->paidAmount==0)
Your are Paid!
@endif
--}}
@if($isPaid->status=="pending")
Registration No Approved! You can not pay now
{{-- @elseif(($isPaid->paidAmount < $isPaid->dueAmount)) --}} @elseif(($isPaid->dueAmount))
Registration Approved! You may pay now
@elseif(($isPaid->amount==$isPaid->paidAmount) && ($isPaid->status=="approved"))
Your Registration Payment is Paid!
@endif
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)}}
Total Paid: {{number_format($isPaid['paidAmount'],2)}}
Total Due: {{number_format($isPaid['dueAmount'],2)}}
Narration: Student Details
{{-- --}}
{{--
{{csrf_field()}}
--}}
{{csrf_field()}}
{{--
--}}
@else

Your Course Registration Is Not Yet.

@endif
@endsection