@extends('layouts.admin') @section('content')
Student Invoice ({{$student->first_name }} {{ $student->middle_name }} {{ $student->last_name }})

Unpaid Invoices

{{-- Export --}}
@forelse($un_paid_invoice as $item) @empty @endforelse @if(count($un_paid_invoice) > 0) @endif
Course Name Period Exam Fees School Fees Total Fees Action
{{ $item->name }}_{{ $item->cname }}({{ $item->lshort_name }}) {{ $item->start_date . ' - ' . $item->end_date }} {{ $item->exam_fee }}.00 L.E {{ $item->school_fee }}.00 L.E {{ $item->total_fee }}.00 L.E
No invoices available.
Total Fees {{ $total_total_fees }}.00 L.E

Paid Invoices

{{-- Export --}}
@forelse ($is_paid_invoice as $item) @empty @endforelse @if(count($is_paid_invoice) > 0) @endif
Course Name Period Exam Fees School Fees Total Fees Action
{{ $item->name }}_{{ $item->cname }}({{ $item->lshort_name }}) {{ $item->start_date . ' - ' . $item->end_date }} {{ $item->exam_fee }}.00 L.E {{ $item->school_fee }}.00 L.E {{ $item->total_fee }}.00 L.E
No paid invoices available.

Refunded Invoices

{{-- Export --}}
{{-- --}} @forelse ($re_fund_invoice as $item) {{-- --}} @empty @endforelse {{-- @if(count($is_paid_invoice) > 0) @endif --}}
Course Name Period Exam Fees School Fees Total FeesAction
{{ $item->name }}_{{ $item->cname }}({{ $item->lshort_name }}) {{ $item->start_date . ' - ' . $item->end_date }} {{ $item->exam_fee }}.00 L.E {{ $item->school_fee }}.00 L.E {{ $item->total_fee }}.00 L.E
No paid invoices available.
@endsection @section('admin-js') @endsection