Posts by Carlos Wagner • 59 points
5 posts
-
0
votes2
answers765
viewsA: Datatable Data Format Problem
In my system I did so, and it worked: { "data": "valor", render: $.fn.dataTable.render.number( '.', ',', 2, 'R$ ' ) }, Source: https://datatables.net/manual/data/renderers - Number Helper…
-
0
votes2
answers112
viewsA: Custom request validating Unique field on update
To validate the Unique fields in update: use Illuminate\Validation\Rule; $rules = [ 'cpf' => ['required', Rule::unique('users')->ignore($user->id)], ]; More information on:…
-
0
votes1
answer74
viewsA: Query works on phpmyadmin, but not on Laravel
I managed to solve guys, thanks for the tips. This mistake was happening because of GROUP BY, but I did not go into it, I confess. I decided as follows: In the config > Database folder, in the…
-
-1
votes1
answer74
viewsQ: Query works on phpmyadmin, but not on Laravel
Galley, Laravel helps a lot, but when he wants to complicate too, it really does. I did a query and tested in phpmyadmin and it works normally, but insert the query in my project Laravel gives…
-
4
votes4
answers1892
viewsQ: Error React-Nactivate-Esture-Handler in version React-Native 0.60.0
Guys, I have a problem with React Navigation after the last update of React-Native for version 0.60.0 The react-native-gesture-handler is not compatible because of a autolink that the new version of…