<?php namespace Realestate\Testimonial; class Testimonial { /** * Return select options testimonial for the module. * * @param string $module * @param array $request * * @return array */ public function options($module = 'testimonial', $request = []) :array { if ($module == 'testimonial') { return TestimonialActions::run('options', $request); } } }