feliseed / laravel-crud-generator
Laravel CRUD 生成器
0.0.2
2024-04-13 17:30 UTC
This package is not auto-updated.
Last update: 2024-09-23 18:14:19 UTC
README
您可以使用以下命令自动生成 CRUD 功能。包括控制器、视图、模型、请求、路由、测试、工厂、种子和迁移等所有必需的文件都将被生成。
# Usage example 1: Generate CRUD by specifying the model name php artisan make:crud MasterProduct # Usage example 2: Generate CRUD from a JSON file defining the table structure php artisan make:crud MasterProduct --schema="./master_products.json" # Usage example 3: Generate CRUD from an existing table (please set the database connection information appropriately in .env, etc.) php artisan make:crud MasterProduct --table=master_products # Reflect in the DB php artisan migrate:refresh --seed