@extends('layouts.app') @section('title', 'WA Inbox') @push('styles') @endpush @section('content')
{{-- ============================================================ LEFT PANEL — Conversation List ============================================================ --}}
{{-- Filter tabs --}} {{-- Tag filter chips --}} @if(count($availableTags))
@foreach($availableTags as $tag) @endforeach
@endif {{-- List --}} {{-- Pagination kecil --}} @if($conversations->hasPages())
@if(!$conversations->onFirstPage()) @endif {{ $conversations->currentPage() }}/{{ $conversations->lastPage() }} @if($conversations->hasMorePages()) @endif
@endif
{{-- ============================================================ RIGHT PANEL — Chat Area ============================================================ --}}
{{-- Empty state --}} {{-- Chat header (hidden until conv selected) --}} {{-- Messages area --}} {{-- Loading --}} {{-- Input --}} {{-- Resolved bar --}}
{{-- ============================================================ INFO PANEL — Kanan ============================================================ --}}
{{-- Sinkronisasi Modal --}} {{-- Mulai Percakapan Modal --}} {{-- Modal Buat Tag Baru --}} {{-- Flash Toast --}} {{-- Pipeline Modal --}} {{-- Assign Modal --}} @endsection @push('scripts') @endpush