Backend\FormBuilderController::index PHP Метод

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

Display a listing of the form.
public index ( ) : Response
Результат 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);
    }