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

溫馨提示×

溫馨提示×

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

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

如何在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

沧源| 阿拉善盟| 扶风县| 类乌齐县| 左云县| 高陵县| 聂荣县| 丽江市| 兖州市| 通州市| 凤翔县| 离岛区| 永济市| 余姚市| 龙口市| 甘洛县| 林西县| 泗阳县| 正定县| 大同县| 澜沧| 绥棱县| 文成县| 大连市| 瓦房店市| 饶阳县| 乳源| 噶尔县| 南城县| 枣庄市| 大名县| 富顺县| 锡林浩特市| 临泽县| 安阳市| 阜阳市| 达孜县| 上蔡县| 桓仁| 鸡西市| 邹平县|