@extends('layouts.chat') @section('content') @if(env('LIVE_CHAT'))
Welcome to Live chat.
Please click anywhere to get started.
Chats from the past 2 weeks
@if(empty($old_chats))
   - No chats found
@else
@foreach($old_chats as $cid => $c) @php if(!empty($c['user']->staff)){ continue; // Skip staff } @endphp
{!! $c['latest_message_time']->format('jS M Y h:i') !!} @if(!empty($c['user']->lead)) @endif {{ $c['name'] }} @if(!empty($c['user']->lead)) @endif
@endforeach
@endif
Messages

Select a room to chat.

@else

Live chat is currently disabled by the website administrator.

@endif @endsection @section('script') @endsection