1. php artisan make:component Navigation --inline
app/View/Components/Navigation/php 파일만 생성된다.
2. 만들어진 component를 삽입해보자
<body class="flex flex-col items-center">
<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>
<x-navigation></x-navigation>
</body>
결과
'라라벨 > laravel7스터디' 카테고리의 다른 글
라라벨7 인증 7 Authentication Example (0) | 2020.04.19 |
---|---|
GuzzleHttp 사용하기 (0) | 2020.03.28 |
메인에서 서브컴포넌트로 제목 넘기기 (0) | 2020.03.28 |
component에 추가내용 전달하기 (0) | 2020.03.28 |
tailwindcss cdn 적용 (0) | 2020.03.28 |