将 Eloquent 模型导出到 JSON 文件
最后更新于 作者: Paul Redmond
Model JSON 是一个包,它允许您轻松地将特定 Laravel Eloquent 模型中的数据导出到 Laravel 应用程序的 JSON 格式。它基于 php artisan 命令,并提供各种选项来定制导出过程。此包有助于以方便的格式从模型中导出重要数据
php artisan model:export User # Or specify the exact model locationphp artisan model:export App\Models\User # Exclude fieldsphp artisan model:export User --except-fields=id,deleted_at
此包还支持使用以下标志关联模型数据
php artisan model:export Product \ --with-relationships=category # Like before, specify which fields to export# on the relationshipphp artisan model:export Product \ --with-relationships=category:id,name
最后,您可以从 JSON 文件导入数据并将其存储在数据库中
php artisan model:import User path/to/Users.json
您可以在 GitHub 上了解有关此包的更多信息,获取完整的安装说明并查看 源代码。