Just simple widgets that will display quick links in statamic dashboard.
- Easy & simple
- Lightweight
You can search for this addon in the Tools > Addons section of the Statamic control panel and click install, or run the following command from your project root:
composer require samosadlaker/linkswidgetTo add the widget to the dashboard, add the following entry to the widgets array in config/statamic/cp.php:
[
'type' => 'links',
'width' => 100,
],Just run this command
php artisan vendor:publish --tag=samosadlaker-linkswidget-configInside config/statamic/links.php you can add your links with icons.
It has a folowing strucutre:
[
'icon' => 'bx-home',
'title' => 'Home',
'url' => '/'
]I am using boxicons image library, so here you can search for icon names: https://boxicons.com/ If you want you can use another icons library by adding styles to statamic panel and just use class names.
The MIT License (MIT). Please see License File for more information.