RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
laravel7学习之无限级分类的示例-创新互联

这篇文章主要介绍laravel7学习之无限级分类的示例,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

创新互联建站是一家专业提供永安企业网站建设,专注与做网站、成都网站设计H5建站、小程序制作等业务。10年已为永安众多企业、政府机构等服务。创新互联专业的建站公司优惠进行中。

写在前面的话

无限级分类,基本在所有的网站都有涉及,所以是必须要掌握的知识点,在网上看很多资料文档,要么不细致,要么根本不对,要么达不到预想的目标,其实实现的思路和方法非常简单,今天我们一起来实现一下。

laravel7学习之无限级分类的示例

创建模型控制器数据迁移文件


这里直接使用artisan命令进行创建

# -a 其实就是all,创建包含模型,控制器(资源),数据迁移文件(工厂模型、seed)
php artisan make:model -a Category

运行这条命令,就可以创建好资源控制器。

laravel7学习之无限级分类的示例

修改数据迁移文件

首先修改数据迁移文件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();
  });

laravel7学习之无限级分类的示例

执行迁移命令

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 文件:


  
   
    编号
    分类名称
    分类标识
    分类描述
    创建时间
    状态
    操作
   
  
  
   @foreach ($categories as $category)
   
    {{ $category->id }}
    {{ $category->title }}
    
     {{ $category->name }}
    
    {{ $category->description }}
    {{ $category->created_at }}
    
     {{ $category->status }}
    
    
   
   
   @foreach ($category->categories as $childCategory)
   @include('category.child_category', ['child_category' => $childCategory])
   @endforeach
   @endforeach
  
 

递归部分加载自身模版child_category.blade.php


 {{ $child_category->id }}
 |{{ str_repeat('--',$child_category->level-1) }} {{ $child_category->title }}
 
  {{ $child_category->name }}
 
 {{ $child_category->description }}
 {{ $child_category->created_at }}
 
  {{ $child_category->status }}
 
 


@if ($child_category->categories)
@foreach ($child_category->categories as $childCategory)
@include('category.child_category', ['child_category' => $childCategory])
@endforeach
@endif

最后看一下效果

laravel7学习之无限级分类的示例

以上是“laravel7学习之无限级分类的示例”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!


网页标题:laravel7学习之无限级分类的示例-创新互联
浏览地址:http://scyingshan.cn/article/doiggd.html