Backend\FormBuilderController::index PHP Method

index() public method

Display a listing of the form.
public index ( ) : Response
return Response
    public function index()
    {
        $forms = \BuiltForm::with('cat')->latest()->get();
        $this->layout->title = 'All Built Forms';
        $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.formbuilders.index')->with('forms', $forms);
    }