@extends('layouts.app') @section('title') Quotation @endsection @push('custom-css') @endpush @section('content')
@if (session('success')) @elseif(session('error')) @endif

QUOTATION QUOTATION#: {{ $request->quotation_no }}


logo

{{ $institution->institution_name }},
{{ $institution->institution_address }}

To,

{{ $request->full_name }}

{{ $user->address }}

Date : {{ date('d-m-Y') }}

Program : {{ $student->program_name }}

@foreach ($other_fees as $other_fee) @endforeach
# Fees Type Amount
1 Program Fees K{{ number_format($program_fees->program_amount) }}
{{ $loop->index + 2 }} {{ $other_fee->fee_name }} K{{ number_format($other_fee->fee_amount) }}

Minimum amount to pay : K{{ number_format($minimum_amount) }}


Total :K{{ number_format($program_fees->program_amount + $other_fees_total) }}


@endsection