caffeinated / menus

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

->attributes() is rendering double quotes #82

Closed ghost closed 8 years ago

ghost commented 8 years ago

My code:

<button {{ $item->attributes() }}>
    {!! $item->->title !!}
</button>

Is rendering:

<button id=""create"" class=""btn btn-primary"">

Note those double quotes on attributes.

Can someone confirm this issue ?

ghost commented 8 years ago

Ops! I was forgetting to escape with {!! !!}.

Sorry, my fault.