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