Posts by Victor Hugo • 43 points
6 posts
- 
		3 votes0 answers28 viewsQ: Local environment does not process some requestsI am working with 2 sites in Laravel, where requests to the server import and export large bases in Excel. When I make changes to these bases, I cannot test them on my local machine, I must go up to… 
- 
		0 votes1 answer72 viewsQ: Laravel Excel I do not understand what is being filledI do not understand what is happening in this code that fills a cell B8 in excel: $sheet->cell('BQ'.$i, function($cell) use($report) {… 
- 
		0 votes0 answers30 viewsQ: Error trying to deploy, Repository access deniedI am developing in Laravel, and I can’t use the deployer to deploy to our server in Amazon, our deploy.php looks like this: and we’re getting this bug, notice I seem to be in the right repository… 
- 
		1 votes1 answer322 viewsA: Laravel HTTP ERROR 500 linuxI solved with the sudo chmod 777 -R command /var/www/html/pmts/Storage/logs probably the update revoked some access to the Windows log page, so it did not display the error 
- 
		0 votes1 answer322 viewsQ: Laravel HTTP ERROR 500 linuxI am a full Noob on Linux, was working normally, and Linux installed some updates that suddenly instead of showing the Laravel error screen, I get the screen. HTTP ERROR 500 In the middle of that I… 
- 
		0 votes1 answer235 viewsQ: PHP Laravel Blade {{{ $name or 'Default' }}} Printing 1According to Laravel’s documentation {{{ $name or 'Default' }}} should behave as if(isset($name)) echo $name else echo 'Default' or echo isset($title) ? $title : 'Default' But it’s coming back 1 as…