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