Posts by William Torres • 26 points
3 posts
-
0
votes1
answer39
viewsA: return select "related table" in the Format
In both foreach, you used the item name equal to the Collection name $pais => $pais, this is a possible source of the bug. To fix this I suggest that in the controller, replace the variable $pais…
-
0
votes1
answer28
viewsA: How do the modal pick up foreach values with Laravel?
You can recover the correct data by performing a request with ajax to the backend and configure the modal inputs from the return of it. With the attribute onclick on the tag button, when clicked, it…
laravelanswered William Torres 26 -
1
votes1
answer49
viewsA: Why aren’t you showing the saved login in Localstorage?
In the onload page you have to call a function to check if there is anything on localStorage, if there is, it inserts into the input, if not, the input is still clean. I took a quick look at the…