@extends('layouts.admin') @section('content')
Registration Courses @include('admin.errors.form-errors')
Search courses
@if (isset($student))

Courses List

@foreach($invoices as $key => $item) @endforeach
# 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
@endif
@endsection @section('admin-js') @endsection