最近在工作中遇到一个需求,是要在laravel 5.4中实现无限级分类,但发现网上这个的资料较少,所以只能自己来实现了,下面这篇文章主要给大家介绍了关于在laravel 5.4中实现无限级分类的方法示例,需要的朋友可以参考借鉴,下面来一起看看吧。
前言
本文主要给大家介绍的是关于laravel 5.4中实现无限级分类的相关内容,分享出来供有需要的朋友们参考学习,下面话不多说,来一起看看详细的介绍吧。
方法如下:
1、建立表
php artisan make:migration create_category_table --create=category
在database/migrations/下找到你的迁移文件
建入:
?phpuse Illuminate/Support/Facades/Schema;use Illuminate/Database/Schema/Blueprint;use Illuminate/Database/Migrations/Migration;html' target='_blank'>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
?phpnamespace 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;
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP !
相关推荐:
关于Laravel中重写资源路由自定义URL的实现方法
关于Laravel队列的实现原理以及如何解决问题
关于Laravel5中Cookie的使用
以上就是关于laravel 5.4中实现无限级分类的方法的详细内容,PHP教程
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。
新闻热点
疑难解答