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