{{-- resources/views/components/wiki/term-card.blade.php --}} {{-- props: word, meaning, summary --}} @props(['word', 'meaning' => '', 'summary' => '']) @php $showSummary = $summary && $summary !== $meaning; @endphp
{{ $word }}
@if ($meaning)
{{ $meaning }}
@endif @if ($showSummary)
{{ $summary }}
@endif