91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

laravel7學習之無限級分類的示例

發布時間:2021-02-04 15:51:34 來源:億速云 閱讀:154 作者:小新 欄目:開發技術

這篇文章主要介紹laravel7學習之無限級分類的示例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

寫在前面的話

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

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

<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學習之無限級分類的示例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

界首市| 特克斯县| 大邑县| 北京市| 枞阳县| 陈巴尔虎旗| 马龙县| 封丘县| 屏南县| 二连浩特市| 容城县| 沙坪坝区| 垦利县| 敖汉旗| 庄浪县| 襄城县| 科尔| 安福县| 花垣县| 威宁| 天水市| 达州市| 荣昌县| 马边| 灵武市| 江华| 江达县| 印江| 新化县| 黄石市| 磴口县| 丽江市| 思南县| 通州市| 富川| 竹山县| 北宁市| 台中市| 益阳市| 天气| 乌兰浩特市|