Bài 8: Blade template engine trong Laravel(phần 2)
1, Template inheritance (kế thừa giao diện). -Mình sẽ làm ví dụ trước để các bạn dễ hiểu nhé. Ví Dụ 1: .-Đầu tiên mình sẽ tạo ra 1 blade template có tên master.blade.php ở đường dẫn resoures\views\master.blade.php. htmlcopy<!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <title> @yield(‘title’)</title> <link rel=”stylesheet” href=””> </head> <body> <div class=”container”> @section(‘content’) @show </div> </body> […]
Đọc tiếp