PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
botble
/
menu
/
src
/
Repositories
/
Eloquent
<?php namespace Botble\Menu\Repositories\Eloquent; use Botble\Menu\Repositories\Interfaces\MenuNodeInterface; use Botble\Support\Repositories\Eloquent\RepositoriesAbstract; class MenuNodeRepository extends RepositoriesAbstract implements MenuNodeInterface { /** * {@inheritDoc} */ public function getByMenuId($menuId, $parentId, $select = ['*'], array $with = ['child']) { $data = $this->model ->with($with) ->where([ 'menu_id' => $menuId, 'parent_id' => $parentId, ]); if (!empty($select)) { $data = $data->select($select); } $data = $data->orderBy('position', 'asc') ->get(); $this->resetModel(); return $data; } }
[+]
..
[-] MenuRepository.php
[edit]
[-] MenuLocationRepository.php
[edit]
[-] MenuNodeRepository.php
[edit]