Laravel Controller Not handling FormData from React Frontend
I am working on a ReactJS frontend and a Laravel backend. My ReactJS frontend sends FormData to a Laravel controller for updating an event. The FormData is correctly populated on the frontend before being sent, and the payload appears correct in the Chrome network tab. I have tried logging the raw data in Laravel, which confirms that the data is received somewhere in the controller. However, the Laravel controller is not populating any data, and it sends an empty object to the database. The controller only updates the database with new values if I hardcode the data in the controller.