@php $jabaliVersion = 'unknown'; $versionFile = base_path('VERSION'); if (file_exists($versionFile)) { $content = file_get_contents($versionFile); if (preg_match('/^VERSION=(.+)$/m', $content, $matches)) { $jabaliVersion = trim($matches[1]); } } @endphp