4. @yield còn có thể nhận tham số thứ hai làm giá trị mặc định (ok)

resources\views\child.blade.php

@extends('app')
@section('template', 'Laravelaaaaaaaa')

resources\views\app.blade.php

<html>
  <head>
    <title>Laravel</title>
  </head>
  <body>
    @yield('contents', 'default')
  </body>
</html>

Kết quả: default

resources\views\child.blade.php

@extends('app')
@section('contents', 'Laravelaaaaaaaa')

Kết quả: Laravelaaaaaaaa

Last updated