라라벨/laravel7스터디

메인에서 서브컴포넌트로 제목 넘기기

땀모 2020. 3. 28. 11:42

1. welcome.blade.php

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

<x-slot name="sometning">사이드바 제목</x-slot>

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

</x-sidebar>


2. 

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

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

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

{{ $slot }}

</div>


결과