I've made a laravel cms app which I'm trying to deploy on a shared hosting. Locally, it runs great.
I’ve saved all laravel app files/folders (except public) in the root under ‘adminCore’ folder. Then, I’ve copied all laravel’s public folder content to public_html/test_page folder.
When I run it (testpage.mywebpage.com), I can log in, I can 'see' all views, connect and read from the database - I can even store new data. However, if I try to edit or delete, data (from database), I get a 403 error, i.e. PUT and DELETE requests get denied.
Since I'm fairly new to this problematics, I'd really appreciate if you could explain why is this happening and/or how should this be solved. Thank you in advance!