最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

laravel7學(xué)習(xí)之無(wú)限級(jí)分類(lèi)的最新實(shí)現(xiàn)方法

 更新時(shí)間:2020年09月30日 08:57:44   作者:神兵小將  
這篇文章主要給大家介紹了關(guān)于laravel7學(xué)習(xí)之無(wú)限級(jí)分類(lèi)的最新實(shí)現(xiàn)方法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧

寫(xiě)在前面的話(huà)

無(wú)限級(jí)分類(lèi),基本在所有的網(wǎng)站都有涉及,所以是必須要掌握的知識(shí)點(diǎn),在網(wǎng)上看很多資料文檔,要么不細(xì)致,要么根本不對(duì),要么達(dá)不到預(yù)想的目標(biāo),其實(shí)實(shí)現(xiàn)的思路和方法非常簡(jiǎn)單,今天我們一起來(lái)實(shí)現(xiàn)一下。

創(chuàng)建模型控制器數(shù)據(jù)遷移文件

這里直接使用artisan命令進(jìn)行創(chuàng)建

# -a 其實(shí)就是all,創(chuàng)建包含模型,控制器(資源),數(shù)據(jù)遷移文件(工廠(chǎng)模型、seed)
php artisan make:model -a Category

運(yùn)行這條命令,就可以創(chuàng)建好資源控制器。

修改數(shù)據(jù)遷移文件

首先修改數(shù)據(jù)遷移文件xxx_create_categories_table.

打開(kāi)文件,修改里面的up方法,添加相應(yīng)字段。

Schema::create('categories', function (Blueprint $table) {
   $table->id();
   $table->string('title', 100)->comment('分類(lèi)名稱(chēng)');
   $table->string('name', 100)->comment('分類(lèi)標(biāo)識(shí)');
   $table->string('description', 255)->nullable()->comment('分類(lèi)描述');
   $table->integer('pid')->default(0)->comment('分類(lèi)id');
   $table->integer('level')->default(1)->comment('分類(lèi)層級(jí)');
   $table->integer('sort')->default(0)->comment('排序');
   $table->integer('status')->default(1)->comment('狀態(tài):0-禁用,1-正常');
   $table->timestamps();
  });

執(zhí)行遷移命令

php artisan migrate

嵌套模型實(shí)現(xiàn)讀取

//App\Models\Category.php
 
public function categories()
 {
  return $this->hasMany(self::class, 'pid', 'id')->with('categories');
 }

控制器調(diào)用

//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,我們添加以下內(nèi)容:

Route::get('category', 'CategoryController@index');

blade模版渲染

這里使用遞歸渲染。

在 resources/views/categories.blade.php 文件:

<table class="table table-borderless table-data3">
  <thead>
   <tr>
    <th>編號(hào)</th>
    <th>分類(lèi)名稱(chēng)</th>
    <th>分類(lèi)標(biāo)識(shí)</th>
    <th>分類(lèi)描述</th>
    <th>創(chuàng)建時(shí)間</th>
    <th>狀態(tài)</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

最后看一下效果

總結(jié)

到此這篇關(guān)于laravel7學(xué)習(xí)之無(wú)限級(jí)分類(lèi)最新實(shí)現(xiàn)方法的文章就介紹到這了,更多相關(guān)laravel7無(wú)限級(jí)分類(lèi)實(shí)現(xiàn)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論

淮滨县| 诏安县| 石泉县| 长汀县| 增城市| 织金县| 铜陵市| 象州县| 平山县| 富锦市| 安庆市| 固阳县| 威宁| 靖宇县| 溧阳市| 上虞市| 招远市| 康乐县| 泸西县| 大渡口区| 渭南市| 安庆市| 泾源县| 静乐县| 固始县| 天气| 惠水县| 宁明县| 承德市| 宜川县| 灌南县| 泰安市| 汕尾市| 民勤县| 东平县| 桃源县| 兰考县| 徐闻县| 平武县| 华容县| 岑溪市|