Posts by rogersneves • 119 points
2 posts
-
1
votes3
answers572
viewsA: Error with complementary routes in Laravel 4
Interpret each route as distinct, then you can create 3 routes: one that meets requests with 1 parameter, one with two and one with three...
-
7
votes2
answers744
viewsQ: How to create a Grouped List in Laravel 4 from an entity with self-relationship
I’m trying to create a select box com \Form::select() (grouped list) in Laravel 4 and I have the following entity: Items id = id do item nome = nome do item pai = fk dessa mesma entidade I already…