/
home
/
techb158
/
immovalet.com
/
platform
/
packages
/
menu
/
src
/
Repositories
/
Interfaces
/
/home/techb158/immovalet.com/platform/packages/menu/src/Repositories/Interfaces
mkdir
upload
Name
Size
Mode
Actions
MenuInterface.php
512
0644
edit
dl
rm
MenuLocationInterface.php
185
0644
edit
dl
rm
MenuNodeInterface.php
485
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/packages/menu/src/Repositories/Interfaces/MenuInterface.php
(512B)
<?php namespace Botble\Menu\Repositories\Interfaces; use Botble\Support\Repositories\Interfaces\RepositoryInterface; interface MenuInterface extends RepositoryInterface { /** * @param string $slug * @param bool $active * @param array $select * @param array $with * @return mixed */ public function findBySlug($slug, $active, array $select = [], array $with = []); /** * @param string $name * @return mixed */ public function createSlug($name); }
Save