Posts by Jackson Meires • 17 points
4 posts
-
-3
votes3
answers1617
viewsA: Mascara in Laravel form field
I needed to use this library jQuery-Mask-Plugin in Laravel, share my solution. <!doctype html> <head> </head> <!-- resources/views/layouts/app.blade.php --> <body>…
-
-3
votes4
answers3789
viewsA: Use jQuery-Mask with Laravel
I needed to use this library jQuery-Mask-Plugin in Laravel, share my solution. Form Cadastrar <!-- resources/views/user/create.blade.php --> @extends('layouts.app') @section('script')…
-
-1
votes3
answers87
viewsA: I cannot pass Methods as Parameter in PHP
PHP is not a functional language, in this case, vc will not be able to pass a method as parameter, vc can do so. $current_year = currentYear();//atribui o retorno do método a variável $current_year…
-
2
votes1
answer107
viewsQ: Using the Java Synchronized
I was doing some exercises in Java, and I came across this code below in a question, stating that "The implementation of the method doLog class Escritor must be qualified as synchronized". How do I…