unisharp/laravel-pagerender
Composer 安装命令:
composer require unisharp/laravel-pagerender
包简介
Provide functions to render regular pages with parent-child relationships.
README 文档
README
- Find your page by alias(aboutus, service, and so on), forget about id.
- Support page with parent-child structure.
- Support custom view for different pages.
- Support breadcrumb(with ancestors function).
Installation
-
install package
composer require unisharp/laravel-pagerender -
use the trait in your model
use \Unisharp\Pagerender\PageRenderTrait; private $default_view = 'page.show';
-
make sure your table has these columns :
parent_id,alias,custom_viewpublic function up() { Schema::create('models', function(Blueprint $table) { // ... $table->string('alias'); $table->integer('parent_id')->unsigned()->nullable(); $table->string('custom_view', 128)->nullable(); // ..
Usage
$page = new Page(); $page->render(); // Generates the default view(or custom view if the column is not empty). $page->summary('content', 7); // Shorten words of a column, ex: The PHP... $page->getByAlias('aboutus'); // Get the about us page. $page->hasByAlias('aboutus'); // Check if the about us page exists. $page->allWithAlias(); // Get pages that have alias. $page->subs; // Get children pages. $page->hasSubs(); // Check if children pages exist. $page->parent; // Get parent page. $page->hasParent(); // Check if parent page exists. $page->roots(); // Get all pages at top level. $page->isRoot(); // Check if this page is at top level. $page->getLevel(); // Get level count(top level as 0). $page->ancestors(); // Get all parent pages of the current page.
Todo
$page->tree(); // Get all pages with parent-child structure.
unisharp/laravel-pagerender 适用场景与选型建议
unisharp/laravel-pagerender 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 87 次下载、GitHub Stars 达 4, 最近一次更新时间为 2015 年 10 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「tree」 「page」 「laravel」 「render」 「breadcrumb」 「parent」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 unisharp/laravel-pagerender 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 unisharp/laravel-pagerender 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 unisharp/laravel-pagerender 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.
Plug-ins for DataTables
jsTree widget for yii2
This package helps you use bitwise enums in PHP and Laravel.
Doctrine2 behavior traits - slowhop fork
A fast and dynamic Merkle tree implementation
统计信息
- 总下载量: 87
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-05