src/Helpers/helpers.php
//if (!function_exists('fireCmsEvent')) { /** * @param string $eventName * @param array $input * @return void */ function fireCmsEvent($eventName, $input = []) { $method = method_exists(\Illuminate\Events\Dispatcher::class, 'dispatch') ? 'dispatch' : 'fire'; Event::$method($eventName, [$eventName, $input]); }}//