dkart/crud-maker
Composer 安装命令:
composer require dkart/crud-maker
包简介
crud maker for laravel
README 文档
README
Installation
Run the installation using composer
composer require dkart/crud-maker
open your config/app.php and add this line in providers section
DKart\CrudMaker\CrudMakerServiceProvider::class,
run the artisan command
php artisan vendor:publish --provider="DKart\CrudMaker\CrudMakerServiceProvider"
you get this files
app
└── Filters
├── BaseFilters.php
└── Filterable.php
Usage
Crude fields are based on a table in the database.
For example, the fields for the Product entity will be generated based on the products table in the database
php artisan make:crud
After that, you need to enter the name of the entity and select a template
Templates
Api
while creating a crud you will get this structure
if you want to use Swagger/OpenApi you should also install this package https://github.com/DarkaOnLine/L5-Swagger and fill in @OA\Info in your Controller.php
app
├── Http
│ ├── Controllers
│ │ └── EntityController.php
│ ├── Requests
│ │ └── Entity
│ │ └── EntityRequest.php
│ └── Resources
│ └── Entity
│ ├── EntityCollection.php
│ └── EntityResource.php
├── Models
│ ├── Entity.php
├── Repositories
│ └── EntityRepository.php
└── Services
└── EntityService.php
database
└── factories
└── EntityFactory.php
tests
└── Feature
└── EntityTest.php
Default
while creating a crud you will get this structure
app
├── Http
│ ├── Controllers
│ │ └── EntityController.php
│ └── Requests
│ └── Entity
│ └── EntityRequest.php
├── Models
│ └── Entity.php
├── Repositories
│ └── EntityRepository.php
└── Services
└── EntityService.php
database
└── factories
└── EntityFactory.php
resources
└── views
└── entity
├── form.blade.php
├── list.blade.php
└── show.blade.php
tests
└── Feature
└── EntityTest.php
Links
dkart/crud-maker 适用场景与选型建议
dkart/crud-maker 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 32 次下载、GitHub Stars 达 13, 最近一次更新时间为 2022 年 07 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 dkart/crud-maker 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dkart/crud-maker 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 32
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 13
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2022-07-09