@extends('layouts/apply_layout') @section('title') @endsection @section('navContent') @include('partials/_navUmsFinalStudent') @endsection @section('content')
Payment Fee
You are Paid
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