@extends('dashboard.layouts.app') @section('content') @if (session('success')) @endif @if ($errors->any()) @endif
Show
{{-- --}}
{{-- --}} @forelse ($studentInvoices as $invoice) {{-- --}} @empty @endforelse
Index Invoice NumberActionsStudent Name Invoice Type Details
{{ $loop->iteration }} {{ $invoice->invoice_number }} {{ $invoice->student->first_name ?? '' }} {{ $invoice->student->last_name ?? '' }} {{ $invoice->type }}
No student invoices found.
{{ $studentInvoices->appends(request()->except('page'))->links('pagination::bootstrap-5') }}
@endsection