laravel 5.4中实现无限级分类的方法示例

laravel 5.4中实现无限级分类的方法示例,第1张

概述最近在工作中遇到一个需求,是要在laravel 5.4中实现无限级分类,但发现网上这个的资料较少,所以只能自己来实现了,下面这篇文章主要给大家介绍了关于在laravel 5.4中实现无限级分类的方法示例,需要的朋友可以参考借鉴,下面来一起看看吧。

前言

本文主要给大家介绍的是关于laravel 5.4中实现无限级分类的相关内容,分享出来供有需要的朋友们参考学习,下面话不多说,来一起看看详细的介绍吧。

方法如下:

1、建立表

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

建入:

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

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、调用

first();

allChildrencategorys;

allChildrencategorys->first()->allChildrencategorys;

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者使用laravel能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对内存溢出的支持。

总结

以上是内存溢出为你收集整理的laravel 5.4中实现无限级分类的方法示例全部内容,希望文章能够帮你解决laravel 5.4中实现无限级分类的方法示例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1270116.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存