Laravel - Views and Blade Templates
What will be rendered by this Blade component usage?
Assuming the
<x-card> <x-slot name="header">Title</x-slot> Content here </x-card>
Assuming the
card component template is:<div class="card">
<header>{{ $header }}</header>
<main>{{ $slot }}</main>
</div>