@extends('layouts.app') @section('title') Student Invoice @endsection {{-- @push('custom-css') @endpush --}} @section('content')
@if (session('error')) @elseif(session('success')) @endif
Query Invoices

{{-- column1 --}}


@if (count($invoices) > 0)
Student Invoices
  • assistant_photoAction
  • printAnother action
  • favoriteSomething else here
@foreach ($invoices as $invoice) @endforeach
Date Invoice No Student Year Session Amount Action
{{ date('d-m-Y', strtotime($invoice->created_at)) }} {{ $invoice->invoice_no }} {{ $invoice->student_no }} {{ $invoice->invoice_year }} {{ $invoice->academic_session_name }} {{ $invoice->invoice_amount }}
@endif {{--
BASIC TABLE
Name Position Office Age Start date Salary
Tiger Nixon System Architect Edinburgh 61 2011/04/25 $320,800
--}}
@endsection