{{ __('SMS') }}

{{ __('All messages sent to this subscriber') }}

{{ trans_choice(':count message|:count messages', $this->messages->count(), ['count' => $this->messages->count()]) }}
@forelse ($this->messages as $m)
{{ $m->created_at->format('M j, Y, H:i') }} {{ $m->status === 'sent' ? __('Delivered') : __('Failed') }}

{{ $m->body }}

{{-- Keeping failures is the point; the reason is what an operator needs when a customer says nothing arrived. --}} @if ($m->failure_reason)

{{ $m->failure_reason }}

@endif
@empty
@if ($search !== '') {{ __('Nothing matches that.') }} @else {{ __('Nothing sent to this number yet.') }} @endif
@endforelse