This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: tahoma; | |
color:#282828; | |
margin: 0px; | |
} | |
.nav-bar { | |
background: linear-gradient(-90deg, #84CF6A, #16C0B0); | |
height: 60px; | |
margin-bottom: 15px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rodar Queues do Laravel em Hospedagem compartilhada | |
//É necessário criar uma método em um controller para executar a queue | |
//Estou chamando a tarefa e dizendo para ser executada somente uma vez | |
public function queue() | |
{ | |
Artisan::call('queue:restart', []); | |
Artisan::call('queue:work', [ | |
'--timeout' => 60, | |
'--memory' => 150, |