@extends('layouts.app') @section('title', 'Inbox') @section('page-title', 'Inbox') @section('content')
Chats
@forelse($chats as $chat)
{{ $chat['name'] ?? $chat['id'] ?? 'Unknown' }}
{{ $chat['lastMessage'] ?? '' }}
@empty
@if($selectedDevice) No chats found @else Connect a device first @endif
@endforelse
Quick Send
@if($selectedDevice && $selectedDevice->isConnected())
@csrf
@else
Select a connected device to send messages
@endif
@endsection