borisnedovis/eloquent-presenter
Composer 安装命令:
composer require borisnedovis/eloquent-presenter
包简介
Presentation standard for Eloquent models
README 文档
README
Install
composer require borisnedovis/eloquent-presenter
Usage
Create presenter class and extend it from aaboris\EloquentPresenter\AbstractPresenter. And specify $attributes keys, which presenter should use from model:
namespace App\Presenters; use BorisNedovis\EloquentPresenter\AbstractPresenter; class UserPresenter extends AbstractPresenter { /** * @var \App\Models\User */ protected $model; protected $attributes = [ 'first_name', 'last_name' ]; }
Additionally you can add method for getting specific values:
protected $attributes = [ 'first_name', 'last_name', 'full_name', // <- a virtual key, that model doesnt contain ]; // Get virtual value. Just studly case your key and surround it with 'get' and 'Attribute'. public function getFullNameAttribute() { return "{$this->model->first_name} {$this->model->last_name}"; }
Include trait BorisNedovis\EloquentPresenter\Presenter in your model. And specify presenter class.
use BorisNedovis\EloquentPresenter\Presenter; class User { use Presenter; // ... protected $presenter = \App\Presenters\UserPresenter::class; }
Or override getPresenterClass method, if you dont like protected attribute, or just need some extra logic:
class User { use Presenter; // ... public function getPresenterClass() { if ($this->isBlocked()) { return \App\Presenters\BlockedUserPresenter::class; } return \App\Presenters\UserPresenter::class; } }
And just send it to output:
$user = User::first(); return response()->json(compact('user'));
{
"first_name": "Boris",
"last_name": "Nedovis",
"full_name": "Boris Nedovis",
}
License
The MIT License (MIT). Please see LICENSE for more information.
borisnedovis/eloquent-presenter 适用场景与选型建议
borisnedovis/eloquent-presenter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 06 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「model」 「laravel」 「presenter」 「eloquent」 「decorator」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 borisnedovis/eloquent-presenter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 borisnedovis/eloquent-presenter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 borisnedovis/eloquent-presenter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Shoot aims to make providing data to your templates more manageable
A nestable user interface building module for the Rhubarb PHP framework based upon the model-view-presenter pattern.
Implementation for Laravel of the presenter design pattern.
Presentation and Formatting helper with nice fluent interface.
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Interfaces for web resource models and services to retrieve and create them
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-06-27