Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/vapecompany/demo.vapecompany.com.bd/vendor/laravel/framework/src/Illuminate/View/Compilers/Concerns/ |
Upload File : |
<?php namespace Illuminate\View\Compilers\Concerns; trait CompilesTranslations { /** * Compile the lang statements into valid PHP. * * @param string|null $expression * @return string */ protected function compileLang($expression) { if (is_null($expression)) { return '<?php $__env->startTranslation(); ?>'; } elseif ($expression[1] === '[') { return "<?php \$__env->startTranslation{$expression}; ?>"; } return "<?php echo app('translator')->get{$expression}; ?>"; } /** * Compile the end-lang statements into valid PHP. * * @return string */ protected function compileEndlang() { return '<?php echo $__env->renderTranslation(); ?>'; } /** * Compile the choice statements into valid PHP. * * @param string $expression * @return string */ protected function compileChoice($expression) { return "<?php echo app('translator')->choice{$expression}; ?>"; } }