Posts by Victor Hugo • 43 points
6 posts
-
3
votes0
answers28
viewsQ: Local environment does not process some requests
I 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 filled
I 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 denied
I 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 linux
I 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 linux
I 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 1
According 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…