7. Các tuyến tài nguyên một phần (Partial resource routes)
1. Các tuyến tài nguyên một phần (Partial resource routes)
// Chỉ đăng ký resource route index, show trong PostController
Route::resource('posts', 'PostController')->only([
'index', 'show'
]);
// Đăng ký tất cả các resource route trong PhotoController ngoại trừ destroy
Route::resource('photos', 'PhotoController')->except([
'destroy'
]);Last updated