Posts by Cassiano • 78 points
6 posts
-
0
votes2
answers658
viewsA: Errors with Put and Delete methods - Methodnotallowedhttpexception - Laravel and Angular
This is certainly problems with routes. 1st - Search in php artisan route:list if the route empresas/exclui/{id} is defined and with DELETE method 2º - If you are not putting the line…
-
1
votes2
answers2665
viewsA: Hide a column in datatables
Instead of putting the visible: false in the columnDefs tries to put in Columns var table = $('#table-coletores').DataTable({ processing: true, serverSide: false, responsive: true, lengthMenu:…
answered Cassiano 78 -
3
votes4
answers342
viewsQ: Laravel 5.3 - Model that can be created by multiple Controllers
Good afternoon, use Laravel 5.3 as back-end of a project and I will try to explain in the most succinct way the problem. Problem: In my project I have the Duplicate model and the Contract. A…
-
1
votes1
answer1806
viewsA: How do I embed one HTML page into another without iframe?
Fala Guilherme, you can use jQuery’s load() function $( "#ul" ).load( "pagina-com-o-ul-modificado #ul-menu" ); http://api.jquery.com/load/ And as Jbueno said, there are several frameworks that have…
-
0
votes1
answer30
viewsA: Doubt in the relations of the Eloquent - Laravel 5:2
I found the solution in the Laravel forum itself, but it is something that is not part of the core framework. The answer is already anchored by the link. In it there is the explanation of how to…
-
1
votes1
answer30
viewsQ: Doubt in the relations of the Eloquent - Laravel 5:2
Good afternoon sorry if I missed any similar question, I searched extensively both here and in English and found nothing like it, I have the following Model in the database contract id due_date…