<?php

namespace Eform\Faq\Forms;

use Litepie\Form\FormInterpreter;

class Faq extends FormInterpreter
{

    /**
     * Sets the form and form elements.
     * @return null.
     */
    public static function setAttributes()
    {

        self::$urls = config('eform.faq.faq.urls');

        self::$search = config('eform.faq.faq.search');

        self::$orderBy = config('eform.faq.faq.order');

        self::$groups =  config('eform.faq.faq.groups');

        self::$list =  config('eform.faq.faq.list');

        self::$fields = config('eform.faq.faq.form');

        return new static();
    }
}