lab2view/laravel-repository-generator
Composer 安装命令:
composer require lab2view/laravel-repository-generator
包简介
Generate Repository from Eloquent models
README 文档
README
Laravel Repositories Generator is a package for Laravel used to generate repositories from Eloquent models.
Installation
Run the following command from your terminal:
composer require "lab2view/laravel-repository-generator"
Usage
Generate repository classes from Eloquent models in the Models folder:
php artisan make:repositories
Use the generated repository in the controller:
<?php namespace App\Http\Controllers; use App\Repositories\PostRepository; class PostController extends Controller { private $postRepository; public function __construct(PostRepository $postRepository) { $this->postRepository = $postRepository; } public function index() { return response()->json($this->postRepository->getAll()); } }
Available Methods
The following methods are available:
Lab2view\RepositoryGenerator\RepositoryInterface
public function exists(string $key, $value, $withTrashed = false) public function getByAttribute(string $attr_name, $attr_value, $relations = [], $withTrashed = false, $selects = []) public function getPaginate(int $n, $relations = [], $withTrashed = false, $selects = []); public function store(Array $inputs) public function getById($id, $relations = [], $withTrashed = false, $selects = []) public function search($key, $value, $relations = [], $withTrashed = false, $selects = []) public function getAll($relations = [], $withTrashed = false, $selects = []) public function countAll($withTrashed = false) public function getAllSelectable($key) public function update($id, Array $inputs) public function destroy($id) public function destroyAll() public function forceDelete($id) public function restore($id)
Example usage
Create a new post in repository:
$post = $this->postRepository->store($request->all());
Update an existing post:
$post = $this->postRepository->update($post_id, $request->all());
Delete post:
$post = $this->postRepository->destroy($id);
Get a post by post_id:
$post = $this->postRepository->getById($id);
you can also choose what relations to eager load:
$post = $this->postRepository->getById($id, ['comments']);
Contributing
Thank you for considering contributing to this Laravel package.
Credits
This package is inspired by this great package by @bosnadev.
lab2view/laravel-repository-generator 适用场景与选型建议
lab2view/laravel-repository-generator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.99k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2020 年 06 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 lab2view/laravel-repository-generator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lab2view/laravel-repository-generator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 15.99k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-06-13