![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/livewire/livewire/src/Mechanisms/ |
<?php namespace Livewire\Mechanisms; use Illuminate\Support\Facades\Blade; use Illuminate\Support\Str; class RenderComponent { function register() { app()->singleton($this::class); } function boot() { Blade::directive('livewire', [static::class, 'livewire']); } public static function livewire($expression) { $key = "'" . Str::random(7) . "'"; $pattern = "/,\s*?key\(([\s\S]*)\)/"; //everything between ",key(" and ")" $expression = preg_replace_callback($pattern, function ($match) use (&$key) { $key = trim($match[1]) ?: $key; return ""; }, $expression); // If we are inside a Livewire component, we know we're rendering a child. // Therefore, we must create a more deterministic view cache key so that // Livewire children are properly tracked across load balancers. // if (LivewireManager::$currentCompilingViewPath !== null) { // // $key = '[hash of Blade view path]-[current @livewire directive count]' // $key = "'l" . crc32(LivewireManager::$currentCompilingViewPath) . "-" . LivewireManager::$currentCompilingChildCounter . "'"; // // We'll increment count, so each cache key inside a compiled view is unique. // LivewireManager::$currentCompilingChildCounter++; // } return <<<EOT <?php \$__split = function (\$name, \$params = []) { return [\$name, \$params]; }; [\$__name, \$__params] = \$__split($expression); \$__html = app('livewire')->mount(\$__name, \$__params, $key, \$__slots ?? [], get_defined_vars()); echo \$__html; unset(\$__html); unset(\$__name); unset(\$__params); unset(\$__split); if (isset(\$__slots)) unset(\$__slots); ?> EOT; } }