Posts by horacio2019 • 41 points
7 posts
-
4
votes1
answer34
viewsA: Date format in Laravel
try like this: date("d/m/Y",strtotime($data)) maybe this will solve
-
0
votes1
answer35
viewsA: Pdf header with absolute position
Good morning to all!! I was able to solve this problem by applying settings to the class constructor as follows: $mpdf = new mPDF('utf-8', '','','',5,5,70,5); Applying these settings, I was able to…
-
-2
votes1
answer35
viewsQ: Pdf header with absolute position
Good afternoon to all!! I am generating the pdf of a data with mpdf, and everything works except for the header that is generated and seems to be configured with 'position:Absolute", can you change…
-
-1
votes1
answer280
viewsQ: str.replace with javascript only works once!
Good morning to all!! I wonder what I’m doing wrong in the code: function () { var x = infoComentarioStrReplace.replace(" $$ ","*")//var resposta = infoComentarioStrReplace.replace("$", "#");…
-
0
votes1
answer99
viewsQ: how to create css for pdf
Good afternoon to all!! Guys, I’m developing an application that generates a pdf, and this pdf needs to have a certain formatting, however, I’m a little lost here... for example, I create a div,…
-
0
votes1
answer277
viewsQ: creation of password in the standard
Good morning to all!! How do I create a password in the style of passwords created by Windows? for very particular reasons I need to use the Laravel users table, but it is my parallel application…
-
0
votes1
answer72
viewsQ: Calling one class within another
I am using classes within classes and wanted to know if I can instantiate the second class in the constructor of the first. It works and I didn’t notice any problems related to performance, but I…