{{ $mailbox->subject }}


@if (count(@$mailbox->mailboxRecipients) > 1)
@foreach ($mailbox->mailboxRecipients ?? [] as $recipient) @endforeach
@else
{{ @$mailbox->mailboxRecipients[0]->emailUser->name }} {{ @$mailbox->mailboxRecipients[0]->email }}
@endif {{ date('M d, Y', strtotime($mailbox->created_at)) . ' (' . $mailbox->created_at->diffForHumans() . ')' }}
CC: @foreach ($mailbox->mailboxCC ?? [] as $cc) {{ $cc->email }}{{ !$loop->last ? ', ' : ' ' }} @endforeach
@if (count($mailbox->mailboxAttachments))

Attachment

@foreach ($mailbox->mailboxAttachments as $attachment) {{ _trans('common.attachment') }} {{ $loop->iteration }} @endforeach
@endif