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>


결과


'라라벨 > laravel7스터디' 카테고리의 다른 글

GuzzleHttp 사용하기  (0) 2020.03.28
인라인 뷰를 렌더링하는 컴포넌트 생성  (0) 2020.03.28
component에 추가내용 전달하기  (0) 2020.03.28
tailwindcss cdn 적용  (0) 2020.03.28
리스트 불러오기  (0) 2020.03.28

+ Recent posts