{{-- A mailbox nobody configured looks exactly like a mailbox with no mail
in it. Said out loud, with what is missing. --}}
@if (! $configured)
{{ __('inbox.not_configured') }}
{{ __('inbox.to_integrations') }}
@endif
@if ($mails->isEmpty())
{{-- Their own words. Escaped by Blade, printed as text: this
came from a stranger and is never rendered as markup. --}}
{{ $mail->body }}
@if ($mail->hasAttachments())
{{-- Names and sizes. The files stay on the mail server —
keeping whatever a stranger attaches would make this
a malware store with a console in front of it. --}}
@if ($mail->customer)
{{-- Straight to the page with the answer box on it. --}}
{{ __('inbox.answer', ['name' => $mail->customer->name]) }}
@else
{{-- One select, one value, no height change — R20's
exception. The address decides automatically;
this is for the customer writing from their
private account, whom no matcher will ever
recognise and an operator recognises at once. --}}
@endif
@if ($mail->archived_at)
{{ __('inbox.unarchive') }}
@else
{{ __('inbox.archive') }}
@endif