Posts by Henrique de Souza • 56 points
4 posts
-
1
votes0
answers28
viewsQ: How to get the scroll width created by Datatable
When creating a table and enabling the Datatable in the same case if the width of the table is larger than the screen where the plugin is being displayed automatically creates a scroll side. In the…
javascriptasked Henrique de Souza 56 -
1
votes2
answers339
viewsA: How to validate integrity when trying to save duplicate data to the database?
This error can be dealt with in several ways, I will indicate two that can assist you in the process: 1º Perform validation in the Request made by the form: You can create a request for it to…
-
2
votes1
answer4203
viewsA: Laravel Validation Unique
According to the Laravel documentation, it is necessary to pass another column parameter in the Rules Unique:table, column, except,idColumn The field under validation must be Unique in a Given…
-
0
votes1
answer110
viewsA: Problems with the return of the query in Laravel 5
Analyzing the code, the algorithm created is correct, but it has some adjustments that can help you. If you are passing the request information via POST, you can make the following changes:…