action-redo
action-undo
actual-size
anchor
android
arrow-down-circle
arrow-down
arrow-left-circle
arrow-left
arrow-right-circle
arrow-right
arrow-up-circle
arrow-up
badge
bag
ban
bar-chart
barcode
basket-loaded
basket
bell
bitcoin
bold
book-open
briefcase
browser
brush
bubble
bubbles
bug
building
bulb
calculator-alt
calculator
calendar
call-end
call-in
call-out
camera
camrecorder
chart
check
chemistry
circle
circle_thin
clock
close
cloud-download
cloud-upload
code
compass
config
control-end
control-forward
control-pause
control-play
control-rewind
control-start
controller
copyright
credit-card
crome
crop
cross
cup
cursor-move
cursor
cut
database
diamond
direction
directions
disc
dislike
doc
docs
dollar
drawer
dribbble
drop
dropbox
earphones-alt
earphones
edge
emotsmile
energy
envelope-letter
envelope-open
envelope
equalizer
euro
event
exclamation
eye
eyeglasses
facebook
feed
female-user
film
filter
fingerprint
fire
firefox
flag
folder-alt
folder
font
frame
friends
full-screen
game-controller
ghost
globe-alt
globe
graduation
graph
grid
handbag
headphones-microphone
headphones
heart
help
history
home
hourglass
ie
info
italic
key
layers
left
like
link
linux
lira
list
loading
location-pin
lock-open
lock
login
logout
loop
mac
macos
magic-wand
magnet
magnifier-add
magnifier-remove
magnifier
map
menu
microphone
minus
module
modules
money
monitor
mouse
moustache
move
music-tone-alt
music-tone
mustache
new-doc
note
notebook
number-list
open
options-vertical
options
orchid-old
orchid
organization
os
paper-clip
paper-plane
paste
paypal
pencil
people
phone
photo
picture
pie-chart
pin
plane
playlist
plus-alt
plus
pointer
pound
power
present
printer
puzzle
question
quote
refresh
reload
right
rocket
rub
rupee
safari
save-alt
save
screen-desktop
screen-smartphone
screen-tablet
server
settings
share-alt
share
shekel
shield
shuffle
size-actual
size-fullscreen
social-behance
social-dribbble
social-dropbox
social-facebook
social-foursqare
social-github
social-google
social-instagram
social-linkedin
social-pintarest
social-reddit
social-skype
social-soundcloud
social-spotify
social-steam
social-stumbleupon
social-tumblr
social-twitter
social-vkontakte
social-youtube
sort-alpha-asc
sort-alpha-desc
sort-amount-asc
sort-amount-desc
sort-numeric-asc
sort-numeric-desc
speech
speedometer
star
start
support
symble-female
symbol-male
table
tablet
tag
target
task
text-center
text-left
text-middle
text-right
trash
trophy
tumblr
twitter
umbrella
unfollow
unlock
user-female
user-follow
user-following
user-unfollow
user
vector
video
volume-1
volume-2
volume-off
wallet
windows
wrench
yen
youtube

The source code is located on github

Custom Icons

In order to include an icon from a popular icon set such as Font Awesome, you can create a new directory for storing the icons. For example, you can create a new icons directory and a fontawesome subdirectory in your resources folder:

resources
  - css 
  - icons
      -- fontawesome 
  - js
  - lang
  - views

Once you have created the new directory, you can download the appropriate icons and place them in the new directory. For example, you can download the notebook icon and place it in the fontawesome subdirectory.

Next, you need to configure the package to search for icons in the new directory. You can do this by editing the config/platform.php configuration file:

'icons' => [
    'fa' => resource_path('icons/fontawesome')
],

In the example above, we have declared the prefix “fa” and the directory where the icons are located.

In order to display the icons in the package’s components, you only need to pass the prefix and the icon’s name. For example, the icon definition in a menu would look like this:

Menu::make('Example of custom icons')
    ->icon('fa.address-book')
    ->url(#);

You can also use the icons outside of the admin panel by using the Blade component.