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