中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何在laravel 5.4中實現一個無限級分類

發布時間:2021-04-15 16:04:17 來源:億速云 閱讀:193 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關如何在laravel 5.4中實現一個無限級分類,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1、建立表

php artisan make:migration create_category_table --create=category

在database/migrations/下找到你的遷移文件

建入:

<?php
 
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
 
class CreateCategoryTable extends Migration
{
 /**
 * Run the migrations.
 *
 * @return void
 */
 public function up()
 {
 Schema::create('categorys', function (Blueprint $table) {
  $table->increments('id');
  $table->integer('parent_id');
  $table->string('code');
  $table->string('name');
  $table->string('path');
  $table->timestamps();
 });
 }
 
 /**
 * Reverse the migrations.
 *
 * @return void
 */
 public function down()
 {
 Schema::dropIfExists('categorys');
 }
}
php artisan migrate

2、建Model 在app/Category.php

php artisan make: model Category -m
<?php
 
namespace App;
 
use Illuminate\Database\Eloquent\Model;
 
class Category extends Model
{
 public function childCategory() {
 return $this->hasMany('App\Category', 'parent_id', 'id');
 }
 
 public function allChildrenCategorys()
 {
 return $this->childCategory()->with('allChildrenCategorys');
 }
}

3、調用

$categorys = App/Category::with('allChildrenCategorys')->first();

$categorys->allChildrenCategorys;

$categorys->allChildrenCategorys->first()->allChildrenCategorys;

看完上述內容,你們對如何在laravel 5.4中實現一個無限級分類有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

石阡县| 锡林郭勒盟| 陇川县| 筠连县| 读书| 海城市| 甘南县| 齐河县| 通河县| 斗六市| 重庆市| 武宣县| 漳平市| 镇沅| 滁州市| 两当县| 磐石市| 黄平县| 巴林左旗| 淮滨县| 富宁县| 焉耆| 旌德县| 横山县| 宽城| 宁蒗| 大荔县| 汉沽区| 上虞市| 西乌珠穆沁旗| 南宁市| 宝丰县| 通州市| 淮南市| 凉城县| 葵青区| 南充市| 平阴县| 长宁区| 达孜县| 齐齐哈尔市|