<?php

namespace Bixo\App\Forms;

use Litepie\Form\FormInterpreter;

class App extends FormInterpreter
{

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

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

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

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

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

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

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

        return new static();
    }
}