🛠️ refactor: group function imports for better readability in multiple Blade files

This commit is contained in:
fsociety
2024-10-24 21:19:06 +02:00
parent c7909c1bea
commit 5113954ba7
12 changed files with 83 additions and 63 deletions

View File

@@ -2,14 +2,18 @@
use Livewire\Volt\Component;
use function Livewire\Volt\computed;
use function Livewire\Volt\mount;
use function Livewire\Volt\state;
use function Livewire\Volt\with;
use function Livewire\Volt\updated;
use function Laravel\Folio\{middleware};
use function Laravel\Folio\name;
use function Livewire\Volt\{on};
use function Livewire\Volt\{
computed,
mount,
state,
with,
updated,
on
};
use function Laravel\Folio\{
middleware,
name
};
name('association.members.admin');