tomhart/laravel-route-from-model
Composer 安装命令:
composer require tomhart/laravel-route-from-model
包简介
Laravel Route From Model
README 文档
README
This library allows a route to be built just from a Model instance, automatically pulling out the parameters, rather
than having to manually pass them.
Simple Example
Imagine a route called test:
Route::get('/test/{name}')->name('test');
Calling:
route_from_model('test', SomeModel::find(1));
will successfully build the route, as name is an attribute on SomeModel that can be retrieved.
Now imagine you want to change the route to be:
Route::get('/test/{name}/id/{id}/{seo_slug}')->name('test');
Using the default route building in Laravel, you'd need to manually go to everywhere the route
is built, and specify what/where the extra id and seo_slug data should come from. Providing they
exist on SomeModel, using the exact same route_from_model call above, it will automatically be able
to build the route without you needing to change anything.
Relationship
Using route_from_model, you're also able to automatically get data from model relationships too, by using ->
Route::get('/test/{name}/{id}/{parent->relationship->value}/{slug}/{child->value}')->name('test');
Providing all those relationships/attributes exist, route_from_model will be able to build the URL.
And the route will successfully change, as all the extra parts can be extracted from the Model.
Trait
You can also add the BuildRouteTrait to your model, and providing the model has a
private $routeName = 'test';
property, you can build a route using:
$route = $model->buildRoute();
Attributes and static values
You can also combine route_from_model with static values too. Imagine the route:
Route::get('/test/{name}/{static}')->name('test');
where static isn't an attribute available on SomeModel, you can simply pass it an array as the third parameter.
route_from_model('test', SomeModel::find(1), ['static' => 'MyValue']);
tomhart/laravel-route-from-model 适用场景与选型建议
tomhart/laravel-route-from-model 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 12 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「route」 「routing」 「router」 「laravel」 「tomhart」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tomhart/laravel-route-from-model 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tomhart/laravel-route-from-model 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tomhart/laravel-route-from-model 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Provide a way to secure accesses to all routes of an symfony application.
Write down your routing mapping at one place
A Laravel-like router for the WordPress Rewrite API
Flight routing is a simple, fast PHP router that is easy to get integrated with other routers.
A Laravel helper to detect if the current route/path is active.
Router
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-12-03