网站首页 > 主流语言 > PHP 正文
写在前面的话
无限级分类,基本在所有的网站都有涉及,所以是必须要掌握的知识点,在网上看很多资料文档,要么不细致,要么根本不对,要么达不到预想的目标,其实实现的思路和方法非常简单,今天我们一起来实现一下。
创建模型控制器数据迁移文件
这里直接使用artisan命令进行创建
# -a 其实就是all,创建包含模型,控制器(资源),数据迁移文件(工厂模型、seed) php artisan make:model -a Category
运行这条命令,就可以创建好资源控制器。
修改数据迁移文件
首先修改数据迁移文件xxx_create_categories_table.
打开文件,修改里面的up方法,添加相应字段。
Schema::create('categories', function (Blueprint $table) { $table->id(); $table->string('title', 100)->comment('分类名称'); $table->string('name', 100)->comment('分类标识'); $table->string('description', 255)->nullable()->comment('分类描述'); $table->integer('pid')->default(0)->comment('分类id'); $table->integer('level')->default(1)->comment('分类层级'); $table->integer('sort')->default(0)->comment('排序'); $table->integer('status')->default(1)->comment('状态:0-禁用,1-正常'); $table->timestamps(); });
执行迁移命令
php artisan migrate
嵌套模型实现读取
//App\Models\Category.php public function categories() { return $this->hasMany(self::class, 'pid', 'id')->with('categories'); }
控制器调用
//app\Http\controllers\CategooryController.php # use模型 use App\Models\Category; public function index() { $categories = Category::with('categories')->where('pid', 0)->get(); return view('category.index', compact('categories')); }
添加路由
在 routes/web.php,我们添加以下内容:
Route::get('category', 'CategoryController@index');
blade模版渲染
这里使用递归渲染。
在 resources/views/categories.blade.php 文件:
<table class="table table-borderless table-data3"> <thead> <tr> <th>编号</th> <th>分类名称</th> <th>分类标识</th> <th>分类描述</th> <th>创建时间</th> <th>状态</th> <th>操作</th> </tr> </thead> <tbody> @foreach ($categories as $category) <tr class="tr-shadow"> <td>{{ $category->id }}</td> <td>{{ $category->title }}</td> <td> <span class="block-email">{{ $category->name }}</span> </td> <td class="desc">{{ $category->description }}</td> <td>{{ $category->created_at }}</td> <td> <span class="status--process">{{ $category->status }}</span> </td> <td></td> </tr> <tr class="spacer"></tr> @foreach ($category->categories as $childCategory) @include('category.child_category', ['child_category' => $childCategory]) @endforeach @endforeach </tbody> </table>
递归部分加载自身模版child_category.blade.php
<tr class="tr-shadow"> <td>{{ $child_category->id }}</td> <td>|{{ str_repeat('--',$child_category->level-1) }} {{ $child_category->title }}</td> <td> <span class="block-email">{{ $child_category->name }}</span> </td> <td class="desc">{{ $child_category->description }}</td> <td>{{ $child_category->created_at }}</td> <td> <span class="status--process">{{ $child_category->status }}</span> </td> <td></td> </tr> <tr class="spacer"></tr> @if ($child_category->categories) @foreach ($child_category->categories as $childCategory) @include('category.child_category', ['child_category' => $childCategory]) @endforeach @endif
最后看一下效果
总结
到此这篇关于laravel7学习之无限级分类最新实现方法的文章就介绍到这了,更多相关laravel7无限级分类实现内容请搜索开源网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开源网!
- 上一篇: php7连接MySQL实现简易查询程序的方法
- 下一篇: 如何利用PHP实现上传图片功能详解
猜你喜欢
- 2021-07-16 PHP如何使用array_unshift()在数组开头插入元素
- 2021-07-16 PHP终止脚本运行三种实现方法详解
- 2021-07-16 PHP超全局变量实现原理及代码解析
- 2021-07-16 PHP copy函数使用案例代码解析
- 2021-07-16 PHP 实现base64编码文件上传出现问题详解
- 2021-07-16 Laravel Reponse响应客户端示例详解
- 2021-07-16 php使用Swoole实现毫秒级定时任务的方法
- 2021-07-16 XAMPP升级PHP版本实现步骤解析
- 2021-07-16 PHP数组访问常用方法解析
- 2021-07-16 PHP autoload使用方法及步骤详解
你 发表评论:
欢迎- 2952℃JS彻底弄懂GMT和UTC时区
- 2824℃JS使用canvas技术模仿echarts柱状图
- 2649℃JS装饰者模式和TypeScript装饰器
- 2574℃JS ES6展开运算符的几个妙用
- 2543℃vue的ssr服务端渲染示例详解
- 2365℃jquery插件实现图片对比
- 2320℃微信小程序视频弹幕位置随机
- 1819℃docker安装redis设置密码并连接的操作
- 0℃未命名
- 开源分类
- 最近发表
-
- (1)python+selenium第一个自动化脚本:实现打开百度首页并搜索selenium
- Discuz!教程之启用HTTPS后解决各处遗留http://网址问题
- 网站如何识别 你是 selenium爬虫?那我们怎么解决(反反爬)
- 旋转拖动验证码解决方案
- python关键词排名_python实现百度关键词排名查询
- Unity3D研究院之通过ipa或apk获取游戏所使用的unity和Xcode版本
- Unity3D研究院编辑器之脚本生成Preset Libraries(十四)
- 手把手教你Charles抓包工具使用
- python开发的程序内存越来越大_遇到个python进程占用内存太多的问题 | 数据,更懂人心...
- Selenium Python3 请求头配置
- 开源网标签
本文暂时没有评论,来添加一个吧(●'◡'●)