Posts by Denali • 33 points
4 posts
- 
		0 votes1 answer32 viewsQ: Is there a tool to help organize multiple click events?within my system there are many events, such as click, change etc. Is there any tool that can help me in organizing these events? $("#btn-save-sidebar").on("click",function(){});… 
- 
		2 votes2 answers1798 viewsQ: How to update the PHP version in Laravel?I tried to install a dependency and he asked for a larger version of PHP. Problem 1 Illuminate/support v5.3.4 requires php >=5.6.4 -> your PHP version (5.5.9) does not satisfy that… 
- 
		1 votes0 answers514 viewsQ: Any command with Artisan is not workingI went to try to install a dependency: https://github.com/barryvdh/laravel-dompdf . But at the end of the installation, an error message appeared: Installation failed, reverting ./composer.json to… 
- 
		0 votes1 answer262 viewsQ: Where to process data in an MVC projectI’m using Laravel as an example. In the Controller i do 2 searches. public function index() { $page_title = "Relatório"; $projetos = Projetos::orderBy('alguma_coluna')->get(); $subprojetos =…