@extends('app::layouts.app') @section('title', 'Inbox') @section('content')
@include('panel.partials.sidebar', ['activeMenu' => 'inbox'])
@include('panel.partials.page-header', [ 'title' => 'Inbox', 'description' => 'Read and reply to buyer messages from the same panel shell used across the site.', 'actions' => $requiresLogin ?? false ? new \Illuminate\Support\HtmlString('Log in') : null, ])
@if($requiresLogin ?? false)

Inbox

Stay on this page and log in when you want to access your conversations.

@endif
@include('conversation::partials.inbox-list-pane', [ 'conversations' => $conversations, 'messageFilter' => $messageFilter, 'selectedConversation' => $selectedConversation, ])
@include('conversation::partials.inbox-thread-pane', [ 'selectedConversation' => $selectedConversation, 'messageFilter' => $messageFilter, 'quickMessages' => $quickMessages, ])
@endsection