├── .github └── FUNDING.yml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config ├── config.php └── viewcomposers.php ├── src ├── Console │ └── Commands │ │ ├── MakeCastCommand.php │ │ ├── MakeHelperCommand.php │ │ ├── MakeMacroCommand.php │ │ ├── MakeScopeCommand.php │ │ ├── MakeServiceCommand.php │ │ ├── MakeTraitCommand.php │ │ └── MakeViewComposerCommand.php └── LaravelMakeExtenderServiceProvider.php └── stubs ├── cast.stub ├── helper.stub ├── macro.stub ├── scope.stub ├── service.invokable.stub ├── service.stub ├── trait.bootable.stub ├── trait.stub └── viewcomposer.stub /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/config/config.php -------------------------------------------------------------------------------- /config/viewcomposers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/config/viewcomposers.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeCastCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/Console/Commands/MakeCastCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeHelperCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/Console/Commands/MakeHelperCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeMacroCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/Console/Commands/MakeMacroCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeScopeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/Console/Commands/MakeScopeCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeServiceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/Console/Commands/MakeServiceCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeTraitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/Console/Commands/MakeTraitCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeViewComposerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/Console/Commands/MakeViewComposerCommand.php -------------------------------------------------------------------------------- /src/LaravelMakeExtenderServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/src/LaravelMakeExtenderServiceProvider.php -------------------------------------------------------------------------------- /stubs/cast.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/cast.stub -------------------------------------------------------------------------------- /stubs/helper.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/helper.stub -------------------------------------------------------------------------------- /stubs/macro.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/macro.stub -------------------------------------------------------------------------------- /stubs/scope.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/scope.stub -------------------------------------------------------------------------------- /stubs/service.invokable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/service.invokable.stub -------------------------------------------------------------------------------- /stubs/service.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/service.stub -------------------------------------------------------------------------------- /stubs/trait.bootable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/trait.bootable.stub -------------------------------------------------------------------------------- /stubs/trait.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/trait.stub -------------------------------------------------------------------------------- /stubs/viewcomposer.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limewell/laravel-make-extender/HEAD/stubs/viewcomposer.stub --------------------------------------------------------------------------------