Posts by Rodrigo Vaz • 1 point
3 posts
-
0
votes2
answers461
viewsA: Generating PDF with Laravel
I recommend using Dompdf, which is already widely accepted and used in the Laravel community. In addition, it is easy to install and has great documentation. Worth checking out:…
-
0
votes2
answers686
viewsA: php - Line break in array
You need to use the attribute rowspan on the tag . See this example,presents exactly the behavior you want: https://www.w3schools.com/TAGS/att_td_rowspan.asp…
phpanswered Rodrigo Vaz 1 -
0
votes1
answer30
viewsA: Persisting teams of projects
Just create the entity Papel and in the entity Usuarios_Projetos replace the field Papel for papel_id. Remove the column Usuarios_id of the entity Projetos. As good practice, I recommend leaving the…