├── .gitignore ├── README.md ├── composer.json ├── resources └── src │ ├── App │ └── Application.php │ └── Support │ └── helpers.php ├── src ├── Casts │ └── TypeCast.php ├── Console │ ├── Classes │ │ ├── MakeActionCommand.php │ │ ├── MakeCollectionCommand.php │ │ ├── MakeControllerCommand.php │ │ ├── MakeDataCommand.php │ │ ├── MakeEventsCommand.php │ │ ├── MakeExceptionCommand.php │ │ ├── MakeModelCommand.php │ │ ├── MakeQueryBuilderCommand.php │ │ ├── MakeQueryCommand.php │ │ ├── MakeRequestCommand.php │ │ ├── MakeRoutesCommand.php │ │ ├── MakeStatesCommand.php │ │ ├── MakeSubscriberCommand.php │ │ ├── MakeSuiteCommand.php │ │ └── MakeViewModelCommand.php │ ├── MakeApplicationCommand.php │ ├── MakeDomainCommand.php │ ├── SetupStructureCommand.php │ └── Traits │ │ ├── Makable.php │ │ └── Stubbalbe.php ├── Livewire │ ├── Component.php │ ├── FormRequest.php │ └── Traits │ │ ├── Componentable.php │ │ └── FormRequestable.php ├── Resources │ ├── Resource.php │ ├── ResourceCollection.php │ └── UnwrappedResourceCollection.php ├── Subscriber.php ├── Support │ ├── Blade.php │ ├── Livewire.php │ └── ServiceProvider.php ├── Traits │ ├── Collectionable.php │ ├── Domainable.php │ ├── QueryBuildable.php │ └── Subscribeable.php └── Types │ └── Type.php └── stubs ├── abstractstate.stub ├── action.stub ├── collection.stub ├── controller.stub ├── data.stub ├── event.stub ├── exception.stub ├── model.stub ├── query.stub ├── querybuilder.stub ├── request.stub ├── routes.stub ├── state.stub ├── subscriber.stub ├── viewmodel.stub └── viewmodelindex.stub /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filippotoso/laravel-domain-library/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filippotoso/laravel-domain-library/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filippotoso/laravel-domain-library/HEAD/composer.json -------------------------------------------------------------------------------- /resources/src/App/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filippotoso/laravel-domain-library/HEAD/resources/src/App/Application.php -------------------------------------------------------------------------------- /resources/src/Support/helpers.php: -------------------------------------------------------------------------------- 1 |