Laravel - Views and Blade Templates
Given this Blade component usage:
And the component template:
What will be the rendered HTML output?
<x-alert> <x-slot name="title">Warning</x-slot> This is an alert message. </x-alert>
And the component template:
<div class="alert">
<h4>{{ $title }}</h4>
<p>{{ $slot }}</p>
</div>What will be the rendered HTML output?
