Backend\FormCategoriesController::index PHP Method

index() public method

Display a listing of the form categories.
public index ( ) : Response
return Response
    public function index()
    {
        $form_cats = \FormCategory::latest()->get();
        $this->layout->title = 'All Form Categories';
        $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.form_categories.index')->with('form_cats', $form_cats);
    }