Path : /var/www/html/jewelry-pos/vendor/arrilot/laravel-widgets/src/Misc/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : //var/www/html/jewelry-pos/vendor/arrilot/laravel-widgets/src/Misc/ViewExpressionTrait.php |
<?php namespace Arrilot\Widgets\Misc; use Illuminate\Support\HtmlString; trait ViewExpressionTrait { /** * Convert a given html to HtmlString object that was introduced in Laravel 5.1. * * @param string $html * * @return \Illuminate\Support\HtmlString|string */ protected function convertToViewExpression($html) { if (interface_exists('Illuminate\Contracts\Support\Htmlable') && class_exists('Illuminate\Support\HtmlString')) { return new HtmlString($html); } return $html; } }