@extends('layouts.app') @section('title', __('(no subject)')) @section('body_class', 'body-conv') @if (!empty($conversation->id)) @section('body_attrs')@parent data-conversation_id="{{ $conversation->id }}"@endsection @endif @section('sidebar') @include('partials/sidebar_menu_toggle') @include('mailboxes/sidebar_menu_view') @endsection @section('content') @include('partials/flash_messages') @php if (empty($thread)) { $thread = $conversation->threads()->first(); } if (!$thread) { $thread = new App\Thread(); } @endphp