summaryrefslogtreecommitdiff
path: root/src/Toolbar/Dropdown/Item.php
blob: c10c8f3bc14cda153eba1109a8e97c95f71b4b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

namespace Lightscale\LaralightTables\Toolbar\Dropdown;

use Illuminate\Support\HtmlString;
use Illuminate\View\View;
use Lightscale\LaralightTables\Concerns\Makable;

abstract class Item
{
    use Makable;

    abstract public function render(): View|HtmlString|string|null;
}