├── .editorconfig ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── BlenderModelServiceProvider.php ├── Controller.php ├── Model.php ├── Scopes ├── NonDraftMediaScope.php ├── NonDraftScope.php ├── OnlineScope.php └── SortableScope.php ├── Traits ├── Draftable.php ├── HasContentBlocks.php ├── HasMedia.php ├── HasSeoValues.php └── HasSlug.php ├── Transformers ├── ContentBlockTransformer.php └── MediaTransformer.php └── Updaters ├── UpdateDates.php ├── UpdateMedia.php ├── UpdateOnlineToggle.php ├── UpdateSeoValues.php ├── UpdateTags.php └── UpdateTranslations.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/composer.json -------------------------------------------------------------------------------- /src/BlenderModelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/BlenderModelServiceProvider.php -------------------------------------------------------------------------------- /src/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Controller.php -------------------------------------------------------------------------------- /src/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Model.php -------------------------------------------------------------------------------- /src/Scopes/NonDraftMediaScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Scopes/NonDraftMediaScope.php -------------------------------------------------------------------------------- /src/Scopes/NonDraftScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Scopes/NonDraftScope.php -------------------------------------------------------------------------------- /src/Scopes/OnlineScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Scopes/OnlineScope.php -------------------------------------------------------------------------------- /src/Scopes/SortableScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Scopes/SortableScope.php -------------------------------------------------------------------------------- /src/Traits/Draftable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Traits/Draftable.php -------------------------------------------------------------------------------- /src/Traits/HasContentBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Traits/HasContentBlocks.php -------------------------------------------------------------------------------- /src/Traits/HasMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Traits/HasMedia.php -------------------------------------------------------------------------------- /src/Traits/HasSeoValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Traits/HasSeoValues.php -------------------------------------------------------------------------------- /src/Traits/HasSlug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Traits/HasSlug.php -------------------------------------------------------------------------------- /src/Transformers/ContentBlockTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Transformers/ContentBlockTransformer.php -------------------------------------------------------------------------------- /src/Transformers/MediaTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Transformers/MediaTransformer.php -------------------------------------------------------------------------------- /src/Updaters/UpdateDates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Updaters/UpdateDates.php -------------------------------------------------------------------------------- /src/Updaters/UpdateMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Updaters/UpdateMedia.php -------------------------------------------------------------------------------- /src/Updaters/UpdateOnlineToggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Updaters/UpdateOnlineToggle.php -------------------------------------------------------------------------------- /src/Updaters/UpdateSeoValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Updaters/UpdateSeoValues.php -------------------------------------------------------------------------------- /src/Updaters/UpdateTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Updaters/UpdateTags.php -------------------------------------------------------------------------------- /src/Updaters/UpdateTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/blender-model/HEAD/src/Updaters/UpdateTranslations.php --------------------------------------------------------------------------------