laravel学习笔记
时间:2019-05-19 14:12:52
收藏:0
阅读:84
运行 php -S localhost:8000 -t xiaohu/public
7-1、增加评论API的实现

php artisan make:migration create_table_comments --create=comments
php artisan migrate --pretend
为了保险起见,我们rollback一下

php artisan make:model Comment
(注意:Comment为单数,不是Comments!)
原文:https://www.cnblogs.com/zhoudawei/p/10889045.html
评论(0)