{{-- Title --}}
Welcome to DineHR System
{{-- Quote section --}}“At DineHR, Behind every great meal is a great team — together, we make every service a success.”
@auth
@php
$dashboardRoute = match(strtolower(auth()->user()->role)) {
'admin' => 'admin.dashboard',
'manager' => 'manager.dashboard',
default => 'staff.dashboard',
};
@endphp
Go to Dashboard
@else
Get Started
@endauth