├── .gitignore ├── LICENSE ├── composer.json ├── documentation └── preview.gif ├── phpstan.neon ├── pint.json ├── readme.md ├── resources └── dist │ └── app.js └── src └── FilamentNavigationHolderServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/composer.json -------------------------------------------------------------------------------- /documentation/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/documentation/preview.gif -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/phpstan.neon -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/pint.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/readme.md -------------------------------------------------------------------------------- /resources/dist/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/resources/dist/app.js -------------------------------------------------------------------------------- /src/FilamentNavigationHolderServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoalaFacade/Filament-Navigation-Holder/HEAD/src/FilamentNavigationHolderServiceProvider.php --------------------------------------------------------------------------------