第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

laravel之無限級分類實現(xiàn)方法

標簽:
laravel

写在前面的话

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

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

> 这里直接使用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><tr class="tr-shadow"><td>{{ $category-&gt;id }}</td>
                <td>{{ $category-&gt;title }}</td>
                <td>
                    <span class="block-email">{{ $category-&gt;name }}</span>
                </td>
                <td class="desc">{{ $category-&gt;description }}</td>
                <td>{{ $category-&gt;created_at }}</td>
                <td>
                    <span class="status--process">{{ $category-&gt;status }}</span>
                </td>
                <td></td>
            </tr></tbody></table>

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

{{ $child_category-&gt;id }}
    |{{ str_repeat('--',$child_category-&gt;level-1) }} {{ $child_category-&gt;title }}
    
        <span class="block-email">{{ $child_category-&gt;name }}</span>
    
    {{ $child_category-&gt;description }}
    {{ $child_category-&gt;created_at }}
    
        <span class="status--process">{{ $child_category-&gt;status }}</span>
    
    

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

最后看一下效果

點擊查看更多內容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學習,寫下你的評論
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優(yōu)惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號

舉報

0/150
提交
取消