Posts by Pyetro • 33 points
2 posts
-
0
votes4
answers3789
viewsA: Use jQuery-Mask with Laravel
To work you would need to make these changes: Change that: <script src="{{ asset('js/app.js') }}" defer></script> For that reason: <script src="{{ asset('js/app.js')…
-
3
votes1
answer4227
viewsA: Variable validation required if
The required_if can also be used this way: required_if:<field>,<comparador>,<valor> Example: 'field1' => 'required|numeric', 'field2' => 'required_if:field1,==,2|string' In…