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