Posts by Guilherme Ferreira • 71 points
3 posts
-
0
votes1
answer47
viewsA: Problem With Git
There may be some conflict between the versions. Use git status to check if you have any information, because depending on the case it does not let you make changes to the repository. In another…
-
1
votes3
answers63
viewsA: Simple doubt about production of a site
Just one remark: I’m considering you’re starting in the area. For layout, as already mentioned you can use the bootstrap. But if possible try to create everything from scratch as you will understand…
-
3
votes1
answer247
viewsA: How to check if there is an error in the Laravel Blade with the @error tag Laravel 5.8.13?
Hello, From what I understand of your doubt. Have you tried using the code below: @if ($errors->any()) <div class="alert alert-danger"> <ul> @foreach ($errors->all() as $error)…