laravel-ready/model-support
Composer 安装命令:
composer require laravel-ready/model-support
包简介
Useful model support traits
README 文档
README
📂 About
Useful eloquent model support traits.
📦 Installation
Get via composer
composer require laravel-ready/model-support
⚙️ Configs
php artisan vendor:publish --tag=model-support-config
Example Trait Usage
use LaravelReady\ModelSupport\Traits\Sluggable; use LaravelReady\ModelSupport\Traits\HasActive; ... class Post extends Model { use Sluggable, HasActive; protected $fillable = [ 'title', 'slug', 'content', 'is_active' ]; ... }
📝 Usage
HasLanguage
This trait allows you to get models by language.
Note Field name is
langby default. You can change it in the config file.
use LaravelReady\ModelSupport\Traits\HasLanguage; ... $model->lang('en'); // will return $query->where('lang', $lang); $model->langNot('en'); // will return $query->where('lang', '!=', $lang); $model->langIn(['en', 'tr']); // will return $query->whereIn('lang', $langs); $model->langNotIn(['en', 'tr']); // will return $query->whereNotIn('lang', $langs);
Sluggable
This trait allows you to generate a slug from a string. When you create a new model, the slug will be generated automatically. If you change the title, the slug will also be updated. See bootSluggable() method for more details.
Note Field names are
slugandtitleby default. You can change it in the config file.
use LaravelReady\ModelSupport\Traits\Sluggable; ... $model->slug('any-string'); // will return $query->where('slug', $slug); $model->slugLike('any-string'); // will return $query->where('slug', 'like', $slug); $model->slugNot('any-string'); // will return $query->where('slug', '!=', $slug); $model->slugNotLike('any-string'); // will return $query->where('slug', 'not like', $slug); $model->slugIn(['any-string', 'any-string']); // will return $query->whereIn('slug', $slug); $model->slugNotIn(['any-string', 'any-string']); // will return $query->whereNotIn('slug', $slug);
SluggableTitle
This trait allows you to generate a slug from a title field. Same as Sluggable trait but it only works with the title field.
Note Field names are
slugandtitle(hardcoded, not configurable).
use LaravelReady\ModelSupport\Traits\SluggableTitle; ... $model->slug('any-string'); // will return $query->where('slug', $slug); $model->slugLike('any-string'); // will return $query->where('slug', 'like', $slug); $model->slugNot('any-string'); // will return $query->where('slug', '!=', $slug); $model->slugNotLike('any-string'); // will return $query->where('slug', 'not like', $slug); $model->slugIn(['any-string', 'any-string']); // will return $query->whereIn('slug', $slug); $model->slugNotIn(['any-string', 'any-string']); // will return $query->whereNotIn('slug', $slug);
SluggableName
This trait allows you to generate a slug from a name field. Same as Sluggable trait but it only works with the name field.
Note Field names are
slugandname(hardcoded, not configurable).
use LaravelReady\ModelSupport\Traits\SluggableName; ... $model->slug('any-string'); // will return $query->where('slug', $slug); $model->slugLike('any-string'); // will return $query->where('slug', 'like', $slug); $model->slugNot('any-string'); // will return $query->where('slug', '!=', $slug); $model->slugNotLike('any-string'); // will return $query->where('slug', 'not like', $slug); $model->slugIn(['any-string', 'any-string']); // will return $query->whereIn('slug', $slug); $model->slugNotIn(['any-string', 'any-string']); // will return $query->whereNotIn('slug', $slug);
ParentChild
This trait allows you to work with parent-child relationships in self-referencing models.
Note Field name is
parent_idby default. You can change it in the config file.
Warning It's only supports self-referencing models.
use LaravelReady\ModelSupport\Traits\ParentChild; ... $model->parent(); // will return parent model (BelongsTo relationship) $model->children(); // will return children models (HasMany relationship) $model->recursiveParent(); // will return parent with all recursive parents $model->recursiveChildren(); // will return children with all recursive children $model->recursiveParentAndChildren(); // will return parent and children recursively
HasActive
This trait allows you to get active/inactive status models.
Note Field name is
is_activeby default. You can change it in the config file.
Warning This trait forces your models to fillable
is_activefield and addsis_activecast toboolean.
use LaravelReady\ModelSupport\Traits\HasActive; ... $model->status(true|false); // will return $query->where('is_active', $status); $model->active(); // will return $query->where('is_active', true); $model->inactive(); // will return $query->where('is_active', false);
🧪 Testing
This package uses Pest PHP for testing and is tested across multiple PHP and Laravel versions.
Running Tests
# Run all tests composer test # Run tests with coverage composer test:coverage # Run tests with HTML coverage report composer test:coverage:html
Static Analysis
# Run PHPStan analysis composer test:styles # Run PHPStan with pro features (fix & watch) composer test:styles:pro
Test Matrix
The package is automatically tested against:
| PHP Version | Laravel 10.x | Laravel 11.x | Laravel 12.x |
|---|---|---|---|
| 8.1 | ✅ | ❌ | ❌ |
| 8.2 | ✅ | ✅ | ❌ |
| 8.3 | ✅ | ✅ | ✅ |
| 8.4 | ✅ | ✅ | ✅ |
| 8.5 | ❌ | ❌ | ✅ |
Tests run automatically on every push and pull request via GitHub Actions.
Local Testing
By using act you can run all test matrix locally (requires Docker).
act
⚓ Credits
- This project was generated by the packager.
laravel-ready/model-support 适用场景与选型建议
laravel-ready/model-support 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.68k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2023 年 04 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「model」 「trait」 「support」 「laravel」 「model support」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 laravel-ready/model-support 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 laravel-ready/model-support 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 laravel-ready/model-support 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
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
Trait providing methods to set class properties with an array.
Expansion traits for Yii2 components
Traits to build collections of specific objects
Laravel 5 - Repositories to the database layer
统计信息
- 总下载量: 2.68k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 8
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-04-09