diff options
author | Sam Light <samlight1994@gmail.com> | 2025-09-23 22:54:57 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-09-23 22:54:57 +0100 |
commit | 2aca9a441ef48fb66ace8a5bfb9d8b730bc4e925 (patch) | |
tree | a3798b6aca1882347e7e55bb1db9249196e0ee73 /src/Toolbar/Item.php | |
parent | 94caf14491860e35eaf07d76e1aea7ee90e1246a (diff) |
Initial pint code formatting
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; - } |