@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp
@csrf @if(session('user_info'))
{{ session('user_info') }}
@endif

Hello, {{$user->userfirstname}}

Have a nice day at work!

YOU'RE CURRENTLY AT :

Find your location...
@if(session('success'))
{{ session('success') }}
@endif
@if($checkins_checkouts->isNotEmpty())

CHECKIN LOG

@else

You have not checked in yet.

@endif
@php $tenantDb = session('tenant_db'); $cacheKey = "chatbot_enabled_{$tenantDb}"; @endphp @if(Cache::get($cacheKey))
AI Chatbot Assistant
👋 Hi! How can I help you today?
@endif
@endsection