Include variables

<p>Hello, {{ $user }}</p>

Don’t escape HTML:

<div>{!! $content !!}</div>

The loop variable

@foreach ($users as $user)
    @if ($loop->first)
        This is the first iteration.
    @endif
 
    @if ($loop->last)
        This is the last iteration.
    @endif
@endforeach

Conditional rendering

@if (!$user)
    You are not logged in.
@endif

Equivalent to:

@unless ($user)
    You are not logged in.
@endif

There is so much more: https://laravel.com/docs/11.x/blade#blade-directives

Merging class names

<div @class([
	'w-full',                        // Default classes, always applied
	'grid gap-4'=> $item->thumbnail, // Conditional classes
	'min-h-[36rem]' => !$landscape,  // Other conditional class
])>

Merging attributes

See https://laravel.com/docs/11.x/blade#default-merged-attributes