Laravel使用iseed扩展导出表数据
标签:
laravel
Laravel使用iseed扩展导出表数据
iseed 扩展包提供了可将数据表里的数据直接转换为 seeder 文件的功能。
iseed地址:
https://github.com/orangehill/iseed
安装
aravel 5.3.8以上版本 使用下面语句
composer require orangehill/iseed
aravel 5.3.8以下版本只能只用iseed 2.2版本 使用下面语句
composer require orangehill/iseed:2.2
在你的 config/app.php 文件中添加 Service Provider
'providers' => [ ... Orangehill\Iseed\IseedServiceProvider::class, ],