render($view, $data); } /** * Check if view exists */ public static function exists(string $view): bool { return self::instance()->exists($view); } /** * Share data with all views */ public static function share(string $key, $value): void { self::instance()->share($key, $value); } }