Posts by Alexssander Cusin • 1 point
2 posts
-
0
votes1
answer133
viewsA: How to treat an sql command in the Laravel controller?
Like CONDITIONS, PENDING, etc... are strings so they should be in quotes in the query so you can choose to ->orWhere("venda.tipo <> 'CONDICOES'") or ->orWhere('venda.tipo', '<>',…
-
0
votes1
answer84
viewsA: Laravel error/ line 24
Hello, Before running your application you must install your dependencies, in this case apparently missing install the Run dependencies composer install should solve your problem.…