👩💻 Join our community of thousands of amazing developers!
There comes a time when you want to make HTTP requests but the URL using which you want to make the request is dynamic. For example, you want to make a request to the GitHub API to get the details of a user but the username is dynamic. Or the version of the API is dynamic. What is a URI template? Making dynamic URLs with URI templates In such scenarios, you can use URI templates to make dynamic URLs in Laravel. In this article, we’ll see how to make dynamic URLs with URI templates in Laravel. ...