반응형
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
- Java
- Python
- 사업자계좌
- Blade
- 이더리움
- 체당금
- 보정명령
- 코로나
- Sentinel
- win32
- reactnative
- vue
- javascript
- cartalyst
- as후기
- 당사자표시정정신청서
- 인민공원
- Eclipse
- 코로나19
- 홈택스
- 개인사업자
- blockchain
- auth
- elasticSearch
- 소액임금체불
- Bootstrap
- Tutorial
- 전자소송
- Laravel
- php
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