@unless (Auth::check())
You are not signed in.
@endunless
@isset($records)
// $records is defined and is not null...
@endisset
@empty($records)
// $records is "empty"...
@endempty
@verbatim
Hello, {{ name }}.
@endverbatim
@production
// Production specific content...
@endproduction
@includeWhen($boolean, 'view.name', ['status' => 'complete'])
@includeUnless($boolean, 'view.name', ['status' => 'complete'])
@includeFirst(['custom.admin', 'admin'], ['status' => 'complete'])
<span @class([
'p-4', 'font-bold' => $isActive,
])></span>
<input type="email" name="email" value="email@laravel.com"
@readonly($user->isNotAdmin()) />
@each('view.name', $jobs, 'job', 'view.empty')