왜이 방법이 show 메서드로 작동하는지 잘 모르겠습니다. 도와주세요.Laravel link to action은 작동하지 않습니다.
{{ link_to_action('[email protected]', 'Delete', $question->id) }}
// In my QuestionsController
public function destroy($question_id)
{
return 'hello';
}
삭제 방법에 직접 연결되어 있으므로 삭제 방법으로 경로가있는 양식을 사용할 필요가 없습니다. 이게 옳은 거니?
사용 장소 코드를 알려주시겠습니까? – Jerodev
docs : http://laravel.com/docs/4.2/html#opening-a-form과 같이 의사 '삭제'http 메소드로'post' 양식이 필요합니다. 물론 기본 라우트 경로를 사용하지 않는 한. –