@props([ 'title' => null, 'icon' => null, 'subtitle' => null, 'hover' => false, 'compact' => false, ])
merge([ 'class' => 'fluent-card ' . ($hover ? 'fluent-card--hover ' : '') . ($compact ? 'fluent-card--compact ' : '') ]) }} > @if($title || $subtitle || $icon)
@if($icon)
@endif
@if($title)
{{ $title }}
@endif @if($subtitle)
{{ $subtitle }}
@endif
@endif @isset($body)
{{ $body }}
@endif @isset($footer) @endisset