Larave assistant is a smart assistant tool for developers in order to develop and implement robust api for their client.
You can install the package via composer:
composer require mdhesari/laravel-assistant --dev
php artisan assistant:install
This package was created when I wanted to have a tool in order to scaffold my new modules in a second with my architecture and design concepts.
It's currently best fit for api design, for example I want to develop a Todo app.
before everything don't forget to add OPENAI_API_KEY in your .env.
OPENAI_API_KEY="YOUR_API_KEY"
The magical command assistant:crud uses base architecture for scaffolding model, controller, migration, request architecture, and also it creates some events and actions in order to integrate them together.
- Crud scaffolding
php artisan assistant:crud -a Task
- Migration
php artisan assistant:make-migration Task
- Model
php artisan assistant:make-model Task
- Request
php artisan assistant:make-request Task
- Modules
Use modules option in order to add files into their specified module.
--modules=true
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email mdhesari99@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.