Posts by Paulo Rodrigo Martins • 1 point
4 posts
-
0
votes1
answer20
viewsA: error while passing variables in a controller
Hello, we noticed that the error is being reported in your view when accessing the service->Designation, in this case in the view do a DD to analyze how this object is coming in the view: Na…
-
0
votes2
answers297
viewsA: How to show user name session inside msg with toastr using Laravel PHP?
Hello, taking into account that you are using the MVC standard, the simple way is to use the BLADE directives to display your data directly in the view. view('home') -> with( '$user' ,…
-
0
votes2
answers69
viewsA: Laravel version 5.8 does not come with routers folder?
Hello, you should install the unzip package on your server, according to the messages your server may be suffering from memory loss: proc_open(): Fork failed - Cannot allocate memory…
-
-1
votes2
answers74
viewsA: Artisan Command - Foreach Laravel - Count affected lines
I believe the result of update or create will generate an object from ORM in the variable $contato, in this case it may be possible to use the count() in the same: $contato->count();…