larapi
larapi copied to clipboard
feat: (infrastructure) replace artisan "make" commands for namespaces
Allow user to make use of php artisan make:component command to create Controller, Model, Service and Repository files as well as namespace if not exist: e.g. php artisan make:component Shop Order would create OrderController, Order, OrderService and OrderRepository under namespace Shop. If namespace Shop not exist, it would be created.