Tham số thứ 2 @yield (ok)

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

<?php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Route::get('/', function () {
    return view('welcome');
});
Route::resource('products','ProductController');
Route::resource('test','Test');

C:\xampp\htdocs\blog\resources\views\child.blade.php

@yield('content', View::make('view.name'))

C:\xampp\htdocs\blog\resources\views\view\name.blade.php

Lorem ipsum dolor sit amet.

C:\xampp\htdocs\blog\app\Http\Controllers\Test.php

<?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');
  }
}

Last updated