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