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