Posts by Luigi Jordânio • 36 points
5 posts
-
1
votes1
answer669
viewsA: Problem to export table in xls format with PHP
change your Content-type header to header('Content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
-
0
votes1
answer40
viewsA: CSS - How to center element vertically?
Try the css: .login{ position:absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding:1em; width: 25%; }
-
0
votes1
answer223
viewsA: How can I get information using Lockable with chained Join?
You can use the select() method to pull only the information you want, and the Join() method to link your query to another table. https://laravel.com/docs/5.6/queries#joins…
-
0
votes3
answers393
viewsA: Get last ID or date inserted in a Mysql table
You will order downward. SELECT idusuario FROM conversa GROUP BY idconversa ORDER BY ID DESC LIMIT 1;
-
1
votes1
answer825
viewsA: Call foreach result Controller checkbox and show in view
Controller namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Categoria; use App\Models\Sessoes; class todosProdutosController extends Controller{ public function…