2. Kế thừa layout (Extending layout) (ok)

resources\views\child.blade.php

@extends('app')

@section('content')
    <h1>My content</h1>
@endsection

@section không tự nó show được thông tin mà phải có từ khóa @yield hoặc @show

Đặc biệt hơn @show còn giúp chúng ta quyết định ghi đè hay không???

Last updated