Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

imranbru's avatar

The GET method is not supported for this route. Supported methods: DELETE.

The GET method is not supported for this route. Supported methods: DELETE.

check the controller: public function destroy(Request $request, Survey $survey) { return $survey; $survey->delete(); return redirect()->route('survey.index'); }

action: {{ route('admin.survey.delete', ['survey' => $survey->id]) }}

0 likes
1 reply

Please or to participate in this conversation.