Backend\FormCategoriesController::show PHP Method

show() public method

Display the specified form categories.
public show ( integer $id ) : Response
$id integer
return Response
    public function show($id)
    {
        $form_cat = FormCategory::findOrFail($id);
        $this->layout->title = $form_cat->title;
        $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.form_categories.show')->with('form_cat', $form_cat);
    }