- Tại resoures/views/... có 1 file layout.blade.php với nội dung như sau
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!doctype html> <html lang="en"> <head> <title>Test Layout</title> </head> <body> <header>Rất nhiều code của Header ở đây</header> <main> <div> @yield('content') </div> </main> <footer>Rất nhiều code của Footer ở đây</footer> </body> </html> |
- Vẫn tại resoures/views/...Các trang khác như /danh-muc, /san-pham, /don-hang muốn thừa kế phần trên mà ko phải viết lại code đoạn header, footer
1 2 3 4 5 |
@extends('layout') @section('content') <h1>Đây là phần viết thêm code</h1> @endsection |