<?php

namespace Eform\Test\Forms;

use Litepie\Form\FormInterpreter;

class Category extends FormInterpreter
{

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

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

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

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

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

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

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

        return new static();
    }
}