Posts by drdhnrq • 57 points
5 posts
-
-2
votes3
answers1075
views -
1
votes1
answer61
viewsA: Find out which function is called in the click
if with his managed with javasript another link, vc is meaning that is adding another javascript button to go to the middle of the page, you need to apply the Listener to this button, because the…
-
0
votes4
answers1204
viewsA: Laravel - Function in Controller
public function existeCertificado($id, $id_evento) { $existeCert = DB::table('certificados') ->where([['id_usuario', $id], ['id_evento', $id_evento]]) ->first(); if(is_null($existeCert)) {…
-
1
votes2
answers3134
viewsA: Center <label> in the center of the screen
From what I saw of your code, just put the div with id bar with 100% width and align center that will be centralized. div#bar { width: 100%; text-align: center; } the other rules you already have,…
-
1
votes2
answers49
viewsA: Controller method getting wrong value in Laravel
This is happening because you are getting two id parameters on your route, and then it is only getting the first one href=http://h20.laravel/cliente/prop/1/cap/1 What version of the Laravel?…