Posts by Losantosw • 15 points
4 posts
-
-1
votes1
answer106
viewsQ: Return data from different tables in a view - Laravel (Solved)
Problem solving: In this example, I am returning in the user view, data referring to 2 different tables (Intro, About), which can be retrieved from a @foreach Example: View user.index…
-
0
votes3
answers945
viewsA: Register user with Laravel
I had a recent problem regarding this error where both Model, Controller and Migrations were ok. After the unsuccessful attempts, I decided to analyze the code again. I realized that in the…
-
1
votes6
answers2555
viewsA: How to change the title element text?
HTML < h1 id="infoMsg" >Texto antigo < /h1> < button id="mudar">Mudar Texto < /button> jQuery $(document).ready(function(){ var msg = $("Texto Novo"); var botao =…
-
-1
votes1
answer444
viewsQ: Stylization of views - Laravel
By Laravel’s default, the view welcome.blade.php comes with styling in the view itself and not in a separate file. I wonder if this practice of styling the view in the same file is correct or should…