亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

laravel7學習之無限級分類的最新實現(xiàn)方法

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

寫在前面的話

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

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

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

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

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

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

首先修改數(shù)據(jù)遷移文件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('狀態(tài):0-禁用,1-正常');
   $table->timestamps();
  });

執(zhí)行遷移命令

php artisan migrate

嵌套模型實現(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>編號</th>
    <th>分類名稱</th>
    <th>分類標識</th>
    <th>分類描述</th>
    <th>創(chuàng)建時間</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學習之無限級分類最新實現(xiàn)方法的文章就介紹到這了,更多相關(guān)laravel7無限級分類實現(xiàn)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • PHP 輸出URL的快捷方式示例代碼

    PHP 輸出URL的快捷方式示例代碼

    輸出URL的快捷方式的實現(xiàn)方法有很多,在本文將為大家介紹下使用php是如何實現(xiàn)的,感興趣的朋友可以參考下,希望對大家有所幫助
    2013-09-09
  • Smarty日期時間操作方法示例

    Smarty日期時間操作方法示例

    這篇文章主要介紹了Smarty日期時間操作方法,結(jié)合實例形式較為詳細的分析了Smarty日期時間操作相關(guān)函數(shù)、參數(shù)功能及使用技巧,需要的朋友可以參考下
    2016-11-11
  • php gzip壓縮輸出的實現(xiàn)方法

    php gzip壓縮輸出的實現(xiàn)方法

    本篇文章介紹了,在php中g(shù)zip壓縮輸出的實現(xiàn)方法。需要的朋友參考下
    2013-04-04
  • PHP的switch判斷語句的“高級”用法詳解

    PHP的switch判斷語句的“高級”用法詳解

    這篇文章主要介紹了PHP的switch判斷語句的“高級”用法詳解,其實本文講解的還是它的基礎用法,需要的朋友可以參考下
    2014-10-10
  • 深入淺析PHP無限極分類的案例教程

    深入淺析PHP無限極分類的案例教程

    平時開發(fā)中或多或少不可避免會遇到無限極分類的問題,因為效率、邏輯等問題也一直使這類問題比較尖銳。今天小編以yii2框架為基礎,欄目無限級為例,給大家介紹php無限極分類的相關(guān)知識,感興趣的朋友一起學習吧
    2016-05-05
  • thinkphp微信開之安全模式消息加密解密不成功的解決辦法

    thinkphp微信開之安全模式消息加密解密不成功的解決辦法

    使用thinkphp官方的WeChat包,使用不同模式可以成功,但是安全模式就是不行,現(xiàn)將分析解決結(jié)果做下記錄,對thinkphp加密解密相關(guān)知識感興趣的朋友參考下
    2015-12-12
  • PHP內(nèi)核探索之變量

    PHP內(nèi)核探索之變量

    php變量由變量名,類型,內(nèi)容等部分組成,本文給大家分享php內(nèi)核探索之變量,對php內(nèi)核探索相關(guān)知識感興趣的朋友一起學習吧
    2015-12-12
  • Smarty分頁實現(xiàn)方法完整實例

    Smarty分頁實現(xiàn)方法完整實例

    這篇文章主要介紹了Smarty分頁實現(xiàn)方法,涉及基于Smarty的數(shù)據(jù)庫查詢、分頁相關(guān)計算與模板操作技巧,需要的朋友可以參考下
    2016-05-05
  • Laravel框架中composer自動加載的實現(xiàn)分析

    Laravel框架中composer自動加載的實現(xiàn)分析

    Laravel作為在國內(nèi)國外都頗為流行的PHP框架,風格優(yōu)雅,其擁有自己的一些特點。下面這篇文章主要給大家介紹了關(guān)于Laravel框架中composer自動加載實現(xiàn)的相關(guān)資料,文中通過示例代碼介紹的非常詳細,需要的朋友可以參考下。
    2017-12-12
  • php設計模式之享元模式分析【星際爭霸游戲案例】

    php設計模式之享元模式分析【星際爭霸游戲案例】

    這篇文章主要介紹了php設計模式之享元模式,結(jié)合星際爭霸游戲案例形式分析了PHP享元模式的相關(guān)原理與使用技巧,需要的朋友可以參考下
    2020-03-03

最新評論