13.Bổ sung cho bộ điều khiển tài nguyên (Supplementing resource controller)

https://viblo.asia/p/tap-14-controller-laravel-Ljy5VXOkZra

6.Bổ sung cho bộ điều khiển tài nguyên (Supplementing resource controller)

Nếu bạn cần bổ sung thêm route cho resource ngoài các route mặc định, bạn cần định nghĩa các route đó trước khi gọi Route::resource

Route::get('posts/popular', 'PostController@popular');

Route::apiResource('posts', 'PostController');

Last updated