{{ $user->profile?->name ?? 'Guest' }}

{{ $active ? 'Yes' : 'No' }}

{{ $items->map(fn ($i) => $i->name)->implode(', ') }}

{{$data['nested']['key']}}

{{ strtoupper($title) . ' — ' . $subtitle }}

{{number_format($total, 2)}}

{!! $html ?: 'empty' !!}

{{ count($items) > 0 ? "{$count} found" : 'none' }}

{{ $loop->iteration }}/{{ $loop->count }}

View

{{ $price > 100 ? __('Premium') : __('Standard') }}