1
我通過從數據庫獲取數據創建了一個動態頁面。從laravel的動態頁面鏈接到另一個頁面
實施例:example.com/post/SE12
是動態創建的這/SE12
。現在我在這個頁面中有一個按鈕,我想編輯帖子。
example.com/post/SE12/edit
。
如何使用laravel將按鈕鏈接到此頁面?以及如何路由此頁面並在控制器中調用它?
在route.php
Route::resource('posts','PostsController');
Route::get('/posts/{code}', [ 'as'=>'post-show', 'uses'=>'[email protected]']);
謝謝!這工作。 – user1012181
另外,如果我想更新此頁面,該怎麼辦? 我給了'{{Form :: open(['url'=>'posts /'.$ code。'/ update'])}}'在表單和路由中:'Route :: get('/ ('code'/ update',''as'=>'post-update','uses'=>'PostsController @ update']);' and in controller 'public function update($ code) {''''''返回'完成'; }' 但它不起作用 – user1012181
你得到了什麼錯誤? – itachi