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