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