<?php namespace Bixo\Account\Forms; use Litepie\Form\FormInterpreter; class Ledger extends FormInterpreter { /** * Sets the form and form elements. * @return null. */ public static function setAttributes() { self::$urls = config('bixo.account.ledger.urls'); self::$search = config('bixo.account.ledger.search'); self::$orderBy = config('bixo.account.ledger.order'); self::$groups = config('bixo.account.ledger.groups'); self::$list = config('bixo.account.ledger.list'); self::$fields = config('bixo.account.ledger.form'); return new static(); } }