Laravel의 리소스 경로에는 다음과 같은 작은 트릭이 숨겨져 있습니다. 즉,
Route::resource('clients.accounts', 'AccountController', ['only' => ['index', 'show']]);
해당 URL은 /clients/{client_id}/accounts/{account_id}和/clients/{client_id}/accounts/
입니다. 이 트릭은 매우 유용합니다.
추천: laravel 튜토리얼
컨트롤러 소스 코드:
namespace App\Http\Controllers; class AccountController extends Controller { public function index($client_id) { return $client_id; } public function show($client_id, $account_id) { return $client_id . '/' . $account_id; } }
관련 권장 사항:
PHP 비디오 튜토리얼: https://www.php.cn/course/list/29/type/2. HTML
위 내용은 Laravel의 리소스 경로 포인트 구문 팁의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!