Posts by Leonardo Vitali • 101 points
6 posts
-
1
votes2
answers518
viewsA: How to send $array with the Post method in Windows?
In Laravel, when a route declared as a post indicates that it will be accessible through the HTTP POST method, read more about HTTP methods here. The framework released this exception because the…
-
3
votes1
answer124
viewsA: What is after "php Artisan serves" in Laravel?
It is very likely that you have typed the character '=' in some file that is included throughout the life cycle of the framework and that this character is before a tag <?php. Search the project…
-
1
votes2
answers2170
viewsA: Docker mysql Error: Connection refused
When the network is created what becomes available is the name of the service and not the container name as described in the networking documentation. Soon the address for the database service is…
-
0
votes1
answer133
viewsA: Always include arguments when running Docker-Compose run
When some argument is passed to the Docker-Compose run [service] command the arguments subscribe to the settings described in Docker-Compose.yml as described in the documentation…
-
1
votes1
answer2283
viewsA: How to create a windows container for Docker?
Microsoft has images available on the Docker website, such as these https://hub.docker.com/r/microsoft/dotnet/ https://hub.docker.com/r/microsoft/windowsservercore/ There is also content in the…
dockeranswered Leonardo Vitali 101 -
1
votes2
answers1595
viewsA: ORM (Eloquent) in Laravel 5.x VS Microservices architecture. How to develop web services using Eloquent that consume end-points of an API?
On the other hand, thinking of the diagram of the drawing above, how would the implementation of a Web Site/APP that only consumes end-points of a API? You will consume through the HTTP layer, using…