企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
``` php artisan // 添加控制器 php artisan make:controller UserController php artisan make:migration create_cakes_table // 运行migration php artisan migrate // 回滚 php artisan migrate:rollback // 查看状态 php artisan migrate:status // 数据表添加列 // 添加 price 字段到 cakes 数据表当中 php artisan make:migration add_price_to_cakes_table // 创建 Model php artisan make:model Cake ```