tomhart/laravel-route-from-model 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tomhart/laravel-route-from-model

Composer 安装命令:

composer require tomhart/laravel-route-from-model

包简介

Laravel Route From Model

README 文档

README

Build Status codecov Scrutinizer Code Quality GitHub release (latest by date) GitHub

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']);

统计信息

  • 总下载量: 5
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-12-03

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固