@php $subject = $row->subject; $body = str($row->body)->stripTags()->limit(140); $charCount = str($row->body)->length(); $isEmail = ($row->type?->value ?? '') === 'email'; @endphp
@if($subject) {{ str($subject)->limit(70) }} @else {{ __('No subject') }} @endif
{{ $body ?: __('No content') }}
{{ number_format($charCount) }} {{ __('chars') }}