Skip to content
Advertisement

Send POST request from an external site to Laravel

I want a way to send POST from a PHP site to another one built with Laravel (the second one) to return a JSON value!

The PHP site (I use jQuery to send this POST):

JavaScript

and the second site built with LARAVEL:

JavaScript

Strange that I have prepared everything, and the POST is sent successfully, but I cannot receive any result? I don’t understand why? knowing that I removed CSRF from this ROUTE!

Any way to do this in Laravel?

Advertisement

Answer

Move route to api.php in Laravel and set your request header Accept: “application/json”

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement