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