這篇文章主要介紹了關於laravel 5.4中實現無限級分類的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
#最近在工作中遇到一個需求,是要在laravel 5.4中實現無限級分類,但發現網上這個的資料較少,所以只能自己來實現了,下面這篇文章主要給大家介紹了關於在laravel 5.4中實現無限級分類的方法範例,需要的朋友可以參考借鑒,下面來一起看看吧。
前言
本文主要介紹給大家的是關於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中實現無限分類的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!