There is a POST route in my api.php file, and it looks like this:
Route::group( ['namespace' => 'api'], function () { Route::post('parent/signup', ' ParentController@signUp '); } );
And I'm trying to access this url in postman , as this is the api route. But when I send a request to this route , this exception occurs:
The NotAllowedHttpException method in the RouteCollection.php 218 line:
I am definitely sending an email request as shown in the image below:

I ran php artisan route:list and this route is POST.
| POST | api\/parent\/signup | | App\\Http\\Controllers\\api\\ ParentController@signUp
What am I doing wrong here? Any help?
Saani source share