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