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