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