How to handle POST request in laravel that were sent as parameters?

0

Define a route this way in the API:

$this->router->post('/logo', 'MinhaContaLogoController@adicionarLogo')

However my client request sends a parameter in the URL in method POST:

/logo?fileapi154288602223716

Since this route does not exist, the return is 404 Not Found

    
asked by anonymous 22.11.2018 / 12:49

0 answers