Posts by Luiz Henrique • 9 points
5 posts
-
0
votes0
answers519
viewsQ: Laravel 5.6 - Error passing 2 parameters in url
Hello, I am trying to pass 2 parameters to my controller using url and am getting the following error message: Missing required Parameters for [Route: Teacher.average_faults] [URI:…
-
0
votes0
answers103
viewsQ: detach() method deleting more data
my detach method erases all data from the student table (it removes the data from the association table but deletes all data from another table) $team = Team::find($id);…
-
0
votes4
answers938
viewsA: Private or protected class in PHP
It is not possible to declare a private class. However you can declare a method as private, you can only access it by instantiating the method class. It could even be done by the builder using…
-
0
votes0
answers659
viewsQ: Error Laravel 5.6 "Undefined Property"
I am trying to list an association table, in my case it is the class table, which associates employees (teachers) and students. I did a good search before posting this question but could not solve…
-
0
votes0
answers71
viewsQ: Rails 5.1 simple form
someone help me with the simple form... I’m trying to put a mask on my simple form initially tried as follows :input_html => {:maxlength => 14, :"data-mask" => "999.999.999-99"} didn’t work…