@extends('dashboard.body.main') @section('container')
@if (session()->has('success')) @endif

Attendance List

Create Attendance
@forelse ($attendances as $attendance) @empty @endforelse
No. Action
{{ (($attendances->currentPage() * 10) - 10) + $loop->iteration }} {{ \Carbon\Carbon::parse($attendance->date)->format('l, d F Y') }}
No attendance records found. Click "Create" to add new.
{{ $attendances->links() }}
@endsection