laravel7学习之无限级分类的最新实现方法
时间:2022-01-07
来源:互联网
标签:
这篇文章主要给大家介绍了关于laravel7学习之无限级分类的最新实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
写在前面的话
无限级分类,基本在所有的网站都有涉及,所以是必须要掌握的知识点,在网上看很多资料文档,要么不细致,要么根本不对,要么达不到预想的目标,其实实现的思路和方法非常简单,今天我们一起来实现一下。

创建模型控制器数据迁移文件
这里直接使用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无限级分类实现内容请搜索PHP爱好者以前的文章或继续浏览下面的相关文章希望大家以后多多支持PHP爱好者!
-
核芯显卡是什么意思?核芯显卡和独立显卡有什么区别? 时间:2025-12-19 -
什么是算术逻辑单元ALU 算术逻辑单元的功能和结构 时间:2025-12-19 -
什么是视觉识别色差检测 视觉识别色差检测的原理、技术特点、应用及常用工具 时间:2025-12-19 -
什么是流量控制 流量控制和拥塞控制的区别 时间:2025-12-19 -
GPU虚拟化是什么意思 GPU虚拟化有哪三种方法 时间:2025-12-19 -
独显是什么意思 独显和集显的区别 时间:2025-12-19
今日更新
-
mc网页版手机入口-我的世界网页版手机直进
阅读:18
-
喵趣漫画App官方最新版本下载-喵趣漫画App正版安装包下载入口
阅读:18
-
币安理财产品如何精准匹配用户风险偏好
阅读:18
-
欧洲人的梗是什么梗?揭秘欧式幽默背后的文化差异与搞笑名场面!
阅读:18
-
歪歪漫画首页登陆入口-歪歪漫画官网登录页面
阅读:18
-
欧洲人非洲人是什么梗?揭秘欧非血统爆笑网络梗,看完秒懂!
阅读:18
-
币安系统故障致交易延误 官方补偿方案详解
阅读:18
-
一人之下免费漫画全集高清入口 | 正版全章节,剧情连贯追更流畅
阅读:18
-
币安界面优化显著提升页面加载速度 用户体验升级
阅读:18
-
豆包AI免费在线使用-豆包AI官网网页版一键直达
阅读:18










