@extends('adminlte::page') @section('title', 'Classroom Guidance') @section('content_header')

Classroom Guidance

@stop @section('content')

All Classroom Guidance Records

New Record
@foreach($guidances as $guidance) @endforeach
# Class Date Tasks Achievements Challenges Created By Actions
{{ $loop->iteration }} {{ $guidance->schoolClass?->name ?? 'N/A' }} {{ $guidance->date->format('d/m/Y') }} {{ $guidance->tasks }} {{ $guidance->achievements }} {{ $guidance->challenges }} {{ $guidance->creator?->name ?? 'N/A' }} View Edit
@csrf @method('DELETE')
{{ $guidances->withQueryString()->links() }}
@stop