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

溫馨提示×

溫馨提示×

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

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

laravel admin如何實現分類樹/模型樹

發布時間:2021-02-04 15:48:44 來源:億速云 閱讀:151 作者:小新 欄目:開發技術

這篇文章主要介紹laravel admin如何實現分類樹/模型樹,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

修改模型Category.php

<?php

namespace App\Admin\Models;

use Encore\Admin\Traits\AdminBuilder;
use Encore\Admin\Traits\ModelTree;
use Illuminate\Database\Eloquent\Model;

class Category extends Model
{
 use ModelTree, AdminBuilder;

 protected $table = 'category';

 public function __construct(array $attributes = [])
 {
  parent::__construct($attributes);
		//這里根據自己的字段修改
  $this->setParentColumn('parent_id');
  $this->setOrderColumn('sort');
  $this->setTitleColumn('name');
 }
 }

修改控制文件CategoryController.php

<?php

namespace App\Admin\Controllers;

use App\Admin\Models\Category;
use Encore\Admin\Controllers\AdminController;
use Encore\Admin\Facades\Admin;
use Encore\Admin\Layout\Content;
use Encore\Admin\Show;

class CategoryController extends AdminController
{
 /**
  * Title for current resource.
  *
  * @var string
  */
 protected $title = '商品分類管理';

 public function index(Content $content)
 {
  return Admin::content(function ($content) {
   $content->header('商品分類管理');
   $content->body(Category::tree(function ($tree) {
    $tree->branch(function ($branch) {
     $src = config('admin.upload.host') . '/' . $branch['image'];
     $logo = "<img src='$src' style='max-width:30px;max-height:30px' class='img'/>";

     return "{$branch['id']} - {$branch['name']} $logo";
    });
   }));
  });
 }
	//下面是自己的代碼
	//.......
 }

添加路由app/Admin/routes.php

$router->resource('categories',CategoryController::class);

select中使用分類樹

$form->select('parent_id', __('Parent id'))->options(Category::selectOptions())->default(1);

以上是“laravel admin如何實現分類樹/模型樹”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

阳新县| 宜兴市| 巴南区| 双柏县| 新民市| 尉氏县| 和静县| 鲁甸县| 聊城市| 边坝县| 霍林郭勒市| 高陵县| 衡水市| 阳西县| 沾益县| 昔阳县| 东辽县| 临海市| 长岛县| 许昌市| 汉川市| 壤塘县| 安顺市| 峨眉山市| 丹寨县| 榆中县| 根河市| 左权县| 乐东| 富川| 桂平市| 满洲里市| 朝阳县| 夹江县| 龙海市| 托克托县| 五家渠市| 于都县| 渝中区| 乌兰察布市| 江城|