@extends('layouts.admin') @section('content')
| # | Course Name | Exam Fee | School Fee | Total Fee | Status | Actions |
|---|---|---|---|---|---|---|
| {{ ++$key }} | {{ $item->name }}_{{ $item->cname }} ({{ $item->lshort_name }}) | {{ $item->exam_fee }}.00 L.E | {{ $item->school_fee }}.00 L.E | {{ $item->total_fee }}.00 L.E | @if($item->is_paid == 1 && $item->examination_invoice_is_deleted == 1) Refunded @elseif($item->is_paid == 1 && $item->examination_invoice_is_deleted == 0) Paid @else Not Paid @endif | @if($item->is_paid == 0) Delete Invoice Record @endif |