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