Include custom configuration and custom commands.
php artisan app:make-dto UserObjectIt will generate file:
- Data Transfer Object
- Data Transfer Object Interface
But if you want to create the interface only you can use command.
php artisan app:make-dto-interface UserObjectInterfacephp artisan app:make-repository UserRepositoryIt will generate file:
- Repository
- Repository Interface
But if you want to create the interface only you can use command.
php artisan app:make-repository-interface UserRepositoryphp artisan app:make-repository-crud UserRepository --model=UserIt will generate file:
- Repository CRUD
- Repository CRUD Interface
- Data Transfer Object
- Data Transfer Object Interface
But if you want to create the interface only you can use command.
php artisan app:make-repository-crud-interface UserRepositoryInterfacephp artisan app:make-service UserService UserServiceIt will generate file:
- Service Class
- Service Interface
But if you want to create the interface only you can use command.
php artisan app:make-service-interface UserServiceInterfacephp artisan app:make-service-crud UserService --model=Userit will generate file:
- Service CRUD
- Service CRUD Interface
- Repository CRUD
- Repository CRUD Interface
- Data Transfer Object
- Data Transfer Object Interface