1. welcome.blade.php <div>추가내용</div>을 추가한다.

<body class="flex flex-col items-center">

<x-sidebar title="My Sidebar" :info="$info" class="bg-gray-500">

<div class="border-solid border-4 border-red-500">추가내용</div>

</x-sidebar>

</body>


2. sidebar.blade.php  삽입할 곳에 {{ $slot }} 를 입력한다.

<div {{$attributes->merge(['class' => 'text-xl'])}}>

<h1>{{ $title }}</h1>
<h3>{{ $info }}</h3>
<p class="text-pink-200">Hello Laravel 7 Component</p>

<ul>
@foreach($list('저는 리스트 매개변수입니다') as $item)
<li>{{ $item }}</li>
@endforeach
</ul>

{{ $slot }}

</div>


결과


+ Recent posts