action btns icon widgets add
This commit is contained in:
24
app/Widgets/IconBtnViewWidget.php
Normal file
24
app/Widgets/IconBtnViewWidget.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Widgets;
|
||||
|
||||
use Arrilot\Widgets\AbstractWidget;
|
||||
|
||||
class IconBtnViewWidget extends AbstractWidget
|
||||
{
|
||||
/**
|
||||
* Treat this method as a controller action.
|
||||
* Return view() or other content to display.
|
||||
*/
|
||||
public function run(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
|
||||
{
|
||||
$url = $this->config['url'];
|
||||
|
||||
return (new ActionButtonWidget([
|
||||
'btn_type' => "primary",
|
||||
'label' => "fa-regular fa-eye",
|
||||
'url' => $url,
|
||||
'title' => "Просмотреть"
|
||||
]))->run();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user