@extends('layouts.admin') @section('content')
| # | Student Name | Course | Exam Fee | School Fee | Total Fee | Status | ||
|---|---|---|---|---|---|---|---|---|
| {{ ++$key }} | {{ $invoice->first_name . ' ' . $invoice->middle_name . ' ' . $invoice->last_name}} | {{ $invoice->name }}_{{ $invoice->cname.' ('.$invoice->lshort_name .')' }} | {{ $invoice->exam_fee }} EGP | {{ $invoice->school_fee }} EGP | {{ $invoice->total_fee }} EGP | @if ($invoice->is_paid == 0)Un Paid | @elseif($invoice->is_paid == 1 && $invoice->invoices_is_deleted == 0)Paid | @elseif($invoice->is_paid == 1 && $invoice->invoices_is_deleted == 1)Refund | @endif
| Total | Exam fees: {{ $examFees }} EGP | School fees: {{ $schoolFees }} EGP | Total fees: {{ $totalFees }} EGP |
Displaying {{$invoices->count()}} of {{ $invoices->total() }} transaction(s).