action btns icon widgets add

This commit is contained in:
2025-01-22 13:13:49 +03:00
parent 22f7ecff6a
commit 265300f345
9 changed files with 131 additions and 34 deletions

View File

@ -0,0 +1,24 @@
<?php
namespace App\Widgets;
use Arrilot\Widgets\AbstractWidget;
class IconBtnListWidget extends AbstractWidget
{
/**
* Treat this method as a controller action.
* Return view() or other content to display.
*/
public function run()
{
$url = $this->config['url'];
return (new ActionButtonWidget([
'label' => "fa-regular fa-rectangle-list",
'url' => $url,
'btn_type' => "primary",
'title' => "Список"
]))->run();
}
}