├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── pint.json ├── src ├── Commands │ └── MakeContextCommand.php ├── Concerns │ ├── ContextualPage.php │ └── ContextualResource.php ├── ContextServiceProvider.php ├── FilamentMultiContextManager.php ├── FilamentMultiContextServiceProvider.php └── Http │ └── Middleware │ └── ApplyContext.php └── stubs ├── ContextServiceProvider.stub └── config.stub /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/composer.json -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/pint.json -------------------------------------------------------------------------------- /src/Commands/MakeContextCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/src/Commands/MakeContextCommand.php -------------------------------------------------------------------------------- /src/Concerns/ContextualPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/src/Concerns/ContextualPage.php -------------------------------------------------------------------------------- /src/Concerns/ContextualResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/src/Concerns/ContextualResource.php -------------------------------------------------------------------------------- /src/ContextServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/src/ContextServiceProvider.php -------------------------------------------------------------------------------- /src/FilamentMultiContextManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/src/FilamentMultiContextManager.php -------------------------------------------------------------------------------- /src/FilamentMultiContextServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/src/FilamentMultiContextServiceProvider.php -------------------------------------------------------------------------------- /src/Http/Middleware/ApplyContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/src/Http/Middleware/ApplyContext.php -------------------------------------------------------------------------------- /stubs/ContextServiceProvider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/stubs/ContextServiceProvider.stub -------------------------------------------------------------------------------- /stubs/config.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artificertech/filament-multi-context/HEAD/stubs/config.stub --------------------------------------------------------------------------------