0

I'm trying to use the with laravel's links.

My link looks like this

{{ HTML::linkAction('admin\MenusController@edit', 'Edit', array(), array('class' => 'btn btn-primary', 'role' => 'button')) }}

and I would like to have the icon with it.

Something like this

<button class="btn btn-primary"><i class="fa fa-edit "></i> Edit</button>
Chibi
  • 103
  • 1
  • 1
  • 9

1 Answers1

0

This should work

{{ HTML::decode(HTML::linkAction('admin\MenusController@edit', 'Edit', array(), array('class' => 'btn btn-primary', 'role' => 'button'))) }}

Source 1

Community
  • 1
  • 1
Net Lane
  • 16
  • 1