Master layout (ok)

<?php
namespace App\Http\Controllers;
use App\Product;
use Illuminate\Http\Request;
class Test extends Controller {
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index() {
return view('child');
}
}
Dữ liệu cố định:
@yield từ khóa giữ chỗ cố định.


Dữ liệu thay đổi @section && @show dùng mở rộng
@section Lệnh này cũng chấp nhận một giá trị mặc định là tham số thứ hai của nó. Giá trị này sẽ được hiển thị nếu phần được mang lại không được xác định:
@yield

PreviousLaravel make view blade template use Artisan Console, make:view (ok)NextTham số thứ 2 @yield (ok)
Last updated
Was this helpful?