diff options
Diffstat (limited to 'src/Toolbar/Item.php')
-rw-r--r-- | src/Toolbar/Item.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/Toolbar/Item.php b/src/Toolbar/Item.php index e161fb9..1b4d1fb 100644 --- a/src/Toolbar/Item.php +++ b/src/Toolbar/Item.php @@ -2,13 +2,12 @@ namespace Lightscale\LaralightTables\Toolbar; +use Illuminate\Database\Eloquent\Model; +use Illuminate\Support\HtmlString; +use Illuminate\View\View; +use Lightscale\LaralightTables\Concerns\Makable; use Lightscale\LaralightTables\TableComponent; use Lightscale\LaralightTables\Toolbar; -use Lightscale\LaralightTables\Concerns\Makable; - -use Illuminate\View\View; -use Illuminate\Support\HtmlString; -use Illuminate\Database\Eloquent\Model; abstract class Item { @@ -35,5 +34,4 @@ abstract class Item } abstract public function render(): View|HtmlString|string|null; - } |