├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── filament-feature-flags.php ├── database ├── factories │ └── FeatureSegmentFactory.php └── migrations │ └── create_filament_feature_flags_table.php.stub └── src ├── Events ├── FeatureActivatedForAll.php ├── FeatureDeactivatedForAll.php ├── FeatureSegmentCreated.php ├── FeatureSegmentModified.php ├── FeatureSegmentRemoved.php └── RemovingFeatureSegment.php ├── FeatureFlagPlugin.php ├── FeatureFlagPluginServiceProvider.php ├── Models └── FeatureSegment.php ├── Resources ├── FeatureSegmentResource.php └── ManageFeatureSegments.php └── Traits ├── HasAuthorization.php └── WithFeatureResolver.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/composer.json -------------------------------------------------------------------------------- /config/filament-feature-flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/config/filament-feature-flags.php -------------------------------------------------------------------------------- /database/factories/FeatureSegmentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/database/factories/FeatureSegmentFactory.php -------------------------------------------------------------------------------- /database/migrations/create_filament_feature_flags_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/database/migrations/create_filament_feature_flags_table.php.stub -------------------------------------------------------------------------------- /src/Events/FeatureActivatedForAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Events/FeatureActivatedForAll.php -------------------------------------------------------------------------------- /src/Events/FeatureDeactivatedForAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Events/FeatureDeactivatedForAll.php -------------------------------------------------------------------------------- /src/Events/FeatureSegmentCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Events/FeatureSegmentCreated.php -------------------------------------------------------------------------------- /src/Events/FeatureSegmentModified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Events/FeatureSegmentModified.php -------------------------------------------------------------------------------- /src/Events/FeatureSegmentRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Events/FeatureSegmentRemoved.php -------------------------------------------------------------------------------- /src/Events/RemovingFeatureSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Events/RemovingFeatureSegment.php -------------------------------------------------------------------------------- /src/FeatureFlagPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/FeatureFlagPlugin.php -------------------------------------------------------------------------------- /src/FeatureFlagPluginServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/FeatureFlagPluginServiceProvider.php -------------------------------------------------------------------------------- /src/Models/FeatureSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Models/FeatureSegment.php -------------------------------------------------------------------------------- /src/Resources/FeatureSegmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Resources/FeatureSegmentResource.php -------------------------------------------------------------------------------- /src/Resources/ManageFeatureSegments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Resources/ManageFeatureSegments.php -------------------------------------------------------------------------------- /src/Traits/HasAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Traits/HasAuthorization.php -------------------------------------------------------------------------------- /src/Traits/WithFeatureResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/filament-feature-flags/HEAD/src/Traits/WithFeatureResolver.php --------------------------------------------------------------------------------