Button icon #604
Answered
by
akulmehta
joaonivaldo
asked this question in
Q&A
Button icon
#604
-
Hello, is there any way to put awesome font icons on action buttons? |
Beta Was this translation helpful? Give feedback.
Answered by
akulmehta
Sep 2, 2022
Replies: 1 comment 1 reply
-
You can do something like: Button::make('delete', '<i class="fa fa-trash"></i>') // the Font Awesome icon code is sent as the second parameter.
->class('btn btn-outline-danger')
->route('posts.remove', ['post' => 'id'])
->target('_self')
->tooltip('Delete Record') |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dansysanalyst
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do something like: