@extends('backend.master') @section('title', $title) @section('content') {!! breadcrumb([ 'title' => $title, route('dashboard') => _trans('common.Dashboard'), '#' => $title, ]) !!}
@csrf
@if (count($mailboxes)) @endif
{{ _trans('common.Compose') }}
@forelse($mailboxes ?? [] as $mailbox) @empty @endforelse
@if (count(@$mailbox->mailboxRecipients) > 1) @foreach ($mailbox->mailboxRecipients ?? [] as $recipient) @endforeach @else {{ @$mailbox->mailboxRecipients[0]->emailUser->name }} @endif
{{ Str::limit($mailbox->subject, 200, '...') }} {{ $mailbox->created_at->diffForHumans() }}
@endsection @section('script') @endsection