<?php

namespace Bixo\Shop\Forms;

use Litepie\Form\FormInterpreter;

class Accessory extends FormInterpreter
{

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

        self::$urls = config('bixo.shop.accessory.urls');

        self::$search = config('bixo.shop.accessory.search');

        self::$orderBy = config('bixo.shop.accessory.order');

        self::$groups =  config('bixo.shop.accessory.groups');

        self::$list =  config('bixo.shop.accessory.list');

        self::$fields = config('bixo.shop.accessory.form');

        return new static();
    }
}