@props([ 'subject' => null, 'title' => null, 'subtitle' => null, 'align' => 'left', 'class' => '', ]) @php $alignClass = match ($align) { 'center' => 'text-center', 'right' => 'text-right', default => 'text-left', }; $marginClass = match ($align) { 'center' => 'mx-auto', 'right' => 'mr-0 ml-auto', default => 'ml-0', }; $subtitles = is_array($subtitle) ? $subtitle : ($subtitle ? [$subtitle] : []); @endphp
{!! $text !!}
@endforeach