POST request from Postman to Laravel POST request from Postman to Laravel laravel laravel

POST request from Postman to Laravel


As you are requesting api you should write your route in api.php instead web.php

web.php require _token the csrf field


By default, Laravel use the middleware VerifyCsrfToken.See thisfor more details.

You need to add your URL to the $excludes field inside VerifyCsrfToken class.


Do you have defined route for redirect('/'); in web.php ?