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