Posts by André • 47 points
3 posts
- 
		1 votes1 answer1648 viewsA: Example of importing XML using LavarelTo get xml through a URL: //se o caminho esteja hospedado noutro servidor $url = "https://www........."; //caso o caminho esteja hospedado no próprio servidor //coloque o ficheiro no caminho:… 
- 
		-2 votes2 answers50 viewsA: Where should a globally used method be located?It is also possible to put this method on a controller of your choice and on controllers where you want to use the method you can do it as follows:… 
- 
		1 votes1 answer1569 viewsA: Pass value of select to route in LaravelI think what you want is something like: View: <form class="form-horizontal" role="form" method="POST" action="{{ route('selecionar.filme') }}"> {{csrf_field() }} <select…