@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
merge(['class' => cn('mb-10', $alignClass, $class)]) }} data-animate="appear"> @if($subject) {{ $subject }} @endif @if($title)

{!! $title !!}

@endif @foreach($subtitles as $text)

{!! $text !!}

@endforeach