March 28, 2022 in Laravel, Php, Technology, Tips and Tricks
how can i protect laravel api calling from other website
added a new middleware and then added to my route you could also restrict access by adding throttling which would stop someone from hammering your API, with token or not. There are probably many approaches. A simple but effective one would be sessions. You can save the user in a session. This way you can […]