运行 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!)
2024-02-24 18:09:28
运行 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!)