@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp
Chat Support
{{-- Static greeting message --}}
Hello! How can I assist you today?
{{-- Loop through chat history --}} @foreach($chats as $chat)
{{ $chat->user_message }}
Sent at {{ $chat->created_at }}
{{ $chat->assistant_message }}
AI Response
@endforeach
@csrf

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
@endsection