You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I then have to hit http://localhost:8080/pages/1/p/ to get the index, http://localhost:8080/pages/1/p/show to access the show method and so on.
also calls to
URL::route('pages.p.index')
failes with
MissingMandatoryParametersException:
Some mandatory parameters are missing ("pages") to generate a URL for route "pages.p.index".
If I need to supply any other information please let me know.
The text was updated successfully, but these errors were encountered:
It's working, you need to specify which "page" the 1 belongs to... the route you are trying to generate a URL for looks like this pages/{page}/p"... you need to specify what value you want for{page}` like:
in routes.php I have
I then have to hit
http://localhost:8080/pages/1/p/
to get the index,http://localhost:8080/pages/1/p/show
to access the show method and so on.also calls to
failes with
If I need to supply any other information please let me know.
The text was updated successfully, but these errors were encountered: