반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 보정명령
- as후기
- Java
- 개인사업자
- cartalyst
- blockchain
- Python
- 사업자계좌
- javascript
- 소액임금체불
- 코로나
- reactnative
- Bootstrap
- 당사자표시정정신청서
- php
- 인민공원
- 전자소송
- 체당금
- 코로나19
- Blade
- 이더리움
- elasticSearch
- Tutorial
- win32
- Sentinel
- 홈택스
- vue
- Laravel
- auth
- Eclipse
Archives
- Today
- Total
그냥 사는 이야기
Laravel 5.3 Tutorial for Beginner - Blade subviews 본문
반응형
Laravel 5.3 Tutorial for Beginner - Blade subviews
menu/footer 생성
views/layouts 에 아래의 2파일 추가 추가
-
menu.blade.php
-
footer.blade.php
menu.blade.php
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a href="#">Home</a></li>
<li role="presentation"><a href="#">About</a></li>
<li role="presentation"><a href="#">Contact</a></li>
</ul>
</nav>
<h3 class="text-muted">Project name</h3>
</div>
footer.blade.php
<footer class="footer">
<p>© {{ date('Y') }} Company, Inc.</p>
</footer>
master.blade.php
...
@include('layouts.menu')
@yield('body')
@include('layouts.footer')
...
'Development > Web' 카테고리의 다른 글
Laravel 5.3 Tutorial for Beginner - Mini Social Network (0) | 2020.01.19 |
---|---|
Laravel 5.3 Tutorial for Beginner - Pagination (0) | 2020.01.19 |
Laravel 5.3 Tutorial for Beginner - Blade layouts (0) | 2020.01.17 |
Laravel 5.3 Tutorial for Beginner - View Composers (0) | 2020.01.16 |
Laravel 5.3 Tutorial for Beginner - Sharing data with all Views (0) | 2020.01.15 |
Comments