Backend\MenuCategoriesController::show PHP Метод

show() публичный Метод

Display the specified menu categories.
public show ( integer $id ) : Response
$id integer
Результат Response
    public function show($id)
    {
        $menu_cat = MenuCategory::findOrFail($id);
        $this->layout->title = $menu_cat->title;
        $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.menu_categories.show')->with('menu_cat', $menu_cat);
    }