@extends('adminlte::page') @section('title', 'Individual Counseling Reports') @section('content_header')

Individual Counseling Reports

@stop @section('content')

All Individual Counseling Reports

New Report
{{-- Search Form --}}
{{-- Table --}}
@forelse ($reports as $index => $report) @empty @endforelse
# Student Date Time Session Number Action
{{ $reports->firstItem() + $index }} {{ $report->student->first_name ?? '' }} {{ $report->student->last_name ?? '' }} {{ $report->date->format('d M, Y') }} {{ $report->time }} {{ $report->session_number ?? '-' }}
@csrf @method('DELETE')
No individual counseling reports found.
{{-- Pagination --}}
{{ $reports->withQueryString()->links() }}
@stop