@extends('admin.default') @section('css') @endsection @section('content')

VTC Attendance

@include('include.messages')
Reset

Attendance Records

@forelse($attendances as $record) @empty @endforelse
GR No Student Name Date Attendance Action
{{ $record->gr_no ?? 'N/A' }} {{ $record->vtcStudent->name ?? 'N/A' }} {{ \Carbon\Carbon::parse($record->date)->format('d M Y') }} {{ ucfirst($record->attendence) }}
@method('DELETE') @csrf
No attendance records found.
@if($attendances->total() > 10) @endif
@endsection @section('js') @endsection