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