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>
결과
'라라벨 > laravel7스터디' 카테고리의 다른 글
인라인 뷰를 렌더링하는 컴포넌트 생성 (0) | 2020.03.28 |
---|---|
메인에서 서브컴포넌트로 제목 넘기기 (0) | 2020.03.28 |
tailwindcss cdn 적용 (0) | 2020.03.28 |
리스트 불러오기 (0) | 2020.03.28 |
데이터 바인딩 넘기는 방법 (0) | 2020.03.28 |