for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Modules\Recipe\Sidebar;
use Maatwebsite\Sidebar\Group;
use Maatwebsite\Sidebar\Item;
use Maatwebsite\Sidebar\Menu;
use Modules\Core\Contracts\Authentication;
class SidebarExtender implements \Maatwebsite\Sidebar\SidebarExtender
{
/**
* @var Authentication
*/
protected $auth;
* @param Authentication $auth
*
* @internal param Guard $guard
public function __construct(Authentication $auth)
$this->auth = $auth;
}
* @param Menu $menu
* @return Menu
public function extendWith(Menu $menu)
$menu->group(trans('core::sidebar.content'), function (Group $group) {
$group->item('Recipe', function (Item $item) {
$item->icon('fa fa-copy');
$item->weight(10);
$item->authorize(
$this->auth->hasAccess('recipe.recipes.index')
);
$item->item(trans('recipe::recipes.title.recipes'), function (Item $item) {
$item->weight(0);
$item->append('admin.recipe.recipe.create');
$item->route('admin.recipe.recipe.index');
});
return $menu;