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