Replies: 3 comments 4 replies
-
How does your route look like to call that screen? (routes/platform.php) |
Beta Was this translation helpful? Give feedback.
3 replies
-
Can anyone help me? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Since a single screen declaration is used in routes (for both GET and POST requests), the order of their declaration matters. You can find an example here: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
HI,
I have a screen with 2 methods
`
public function partecipa(Torneo $torneo, Request $request)
{
$torneo
->torneiMy()
->create(['users_id' => $request->user()->id, 'tornei_id' => $torneo->id]);
for the "esci" method gives me an error.
The POST method is not supported for this route. Supported methods: GET, HEAD.
How can I solve it?
Beta Was this translation helpful? Give feedback.
All reactions