qingjian/app/widget/Crumbs.php

17 lines
312 B
PHP
Raw Permalink Normal View History

2021-08-06 10:50:55 +00:00
<?php
namespace app\widget;
use app\model\Category;
use think\facade\View;
class Crumbs
{
public function index($categoryId)
{
$data = [
'crumbs' => Category::getCatesCrumbs($categoryId)
];
return View::assign($data)->fetch('public/crumbs');
}
}