@extends('layouts.student') @section('content')
Invoices @include('admin.errors.form-errors')
search
@if (request()->period )

List

@if($studentInvoices->isNotEmpty())
@endif
@foreach ($studentInvoices as $key=>$invoice) @endforeach
# course exam fees school fees total fees
{{ ++$key }} {{ $invoice->name }}_{{ $invoice->cname.' ('.$invoice->lshort_name .')' }} {{ $invoice->exam_fee }} {{ $invoice->school_fee }} {{ $invoice->total_fee }} @if ($invoice->is_paid) Paid @else
@csrf
@endif
@endif
@if (request()->period ) @endif @endsection @section('student-js') {{-- draw all data tables --}} @endsection