BookMyMandabam
Home Halls @auth {{-- Dashboard --}} @if(auth()->user()->role == 'owner') Dashboard @else Dashboard @endif {{-- CUSTOMER --}} @if(auth()->user()->role == 'customer') My Bookings @endif {{-- OWNER --}} @if(auth()->user()->role == 'owner') My Halls Upcoming Bookings @endif {{-- ADMIN --}} @if(auth()->user()->role == 'admin') Admin Dashboard Hall Approvals All Halls Bookings @endif @endauth
@guest Login Register @else {{ Auth::user()->name }}
@csrf
@endguest