@extends('layouts.app') @section('title', 'Report Results | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('breadcrumb') Home / Reports / Custom Builder / Results @endsection @section('content')
| Student | Class | Subject | Exam Type | Score | Date |
|---|---|---|---|---|---|
| {{ $row->student->fullName() }} | {{ $row->schoolClass->name }} {{ $row->schoolClass->stream }} | {{ $row->subject->name }} | {{ $row->exam_type }} | {{ $row->score }}% | {{ $row->created_at->format('M d, Y') }} |
| Student | Invoice # | Class | Total Amount | Paid | Balance | Due Date |
|---|---|---|---|---|---|---|
| {{ $row->student->fullName() }} | {{ $row->invoice_number }} | {{ $row->student->schoolClass->name }} | {{ number_format($row->total_amount) }} | {{ number_format($row->paid_amount) }} | {{ number_format($row->total_amount - $row->paid_amount) }} | {{ $row->due_date->format('M d, Y') }} |
No data found matching your filters.
Go Back