laravel使用之快速填充数据
1、php artisan make:factory [factory name]
2、根据字段需要配置所需的值
3、php artisan make:Model [model name] 创建相应的模型
4、php artisan tinker 进入tinker系统
5、factory(App\[model name]::class,所需数据条数)->create()|make()
create为创建并插入数据,make为创建不插入
1、php artisan make:factory [factory name]
2、根据字段需要配置所需的值
3、php artisan make:Model [model name] 创建相应的模型
4、php artisan tinker 进入tinker系统
5、factory(App\[model name]::class,所需数据条数)->create()|make()
create为创建并插入数据,make为创建不插入
本文标题:2020-03-20
本文链接:https://www.haomeiwen.com/subject/eqjsyhtx.html
网友评论