treggats/crud-repository-generator

此包已被废弃且不再维护。未建议替代包。

仓库生成器

1.0.5 2021-07-20 10:20 UTC

This package is auto-updated.

Last update: 2024-07-17 10:53:35 UTC


README

使用此包,您可以生成简单的 CRUD 仓库,带有或没有合约。

用法

对于 User 模型,没有合约。

php artisan make:repository UserRepository

对于 User 模型,有合约。

php artisan make:repository -c UserRepository

配置

如果您为模型有自定义位置,您可以发布配置。配置默认为 "App\Models"。

php artisan vendor:publish --provider="Treggats\CrudRepositoryGenerator\CrudRepositoryGeneratorServiceProvider"