<?php

namespace Bixo\Account\Forms;

use Litepie\Form\FormInterpreter;

class Costcenter extends FormInterpreter
{

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

        self::$urls = config('bixo.account.costcenter.urls');

        self::$search = config('bixo.account.costcenter.search');

        self::$orderBy = config('bixo.account.costcenter.order');

        self::$groups =  config('bixo.account.costcenter.groups');

        self::$list =  config('bixo.account.costcenter.list');

        self::$fields = config('bixo.account.costcenter.form');

        return new static();
    }
}