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