Issues using routes in Laravel Octane

830 Views Asked by At

I am trying to implement a laravel API using octane for the increased performance, and im now trying to use the Octane::route to pull back data from my database in my api.php file and i keep getting an error, i am running my tests using postman to hit the endpoint. I am still learning how this all works and would love for some guidance.

route code:


use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use Laravel\Octane\Facades\Octane;

use App\Models\User;
use App\Http\Controllers\UserController;
use Symfony\Component\HttpFoundation\Response;

Octane::route('GET', '/users', function(){
    return response()->json([
        'data' => \App\Models\User::all()
    ]);
});

error:

Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException: The GET method is not supported for this route. Supported methods: POST. in file /home/forge/techgate-api-staging-1.chargenation.io/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php on line 118
0

There are 0 best solutions below