Breadcrumbs
Breadcrumbs have the following properties which are optional:
Property | Required? | Type | Options | Description |
---|---|---|---|---|
linksArray | yes | array | Array of links to be displayed in the Breadcrumbs. | |
homeIcon | no | string | Border color around the avatar |
Basic Example
Basic Breadcrumb example with a homeIcon
1$linksArr = [ 2 [ 3 "label" => "Blog", 4 "url" => "/blog" 5 ], 6 [ 7 "label" => "Articles", 8 "url" => "/blog/articles" 9 ],10 [11 "label" => "New Article",12 "url" => "/blog/articles/new-article"13 ]14]
1<x-fcui-breadcrumbs homeIcon='<i class="fa-solid fa-house"></i>' :linksArray="$linkArr"/>