@extends('dashboard.layouts.app') @section('content')
@if (session('success')) @endif @if ($errors->any()) @endif
Clear
@if ($users->isNotEmpty())
@csrf
@foreach ($users as $user) @endforeach
Staff No Name Role Attendance Note
{{ $user['staff_no'] }} {{ $user['full_name'] }} {{ $user['role'] }}
@else

Please select a role and date to view user records.

@endif
@push('scripts') @endpush @endsection