caffeinated / menus

:pushpin: Menu generator package for the Laravel framework
https://caffeinatedpackages.com
132 stars 59 forks source link

url() does not generate a real Url #66

Open nicozimmermann94 opened 8 years ago

nicozimmermann94 commented 8 years ago

I have the following menu item: $home = $mainmenu->add('Startseite', '/abc')->active('/*');

When I call {{ $item->url() }} in my blade template, I expect a valid Url, but I get http://abc instead.

What am I doing wrong?

nicozimmermann94 commented 8 years ago

Found a solution: instead of /abc I had to use simply abc. But the docs say so?