NetGescon
Versione: {{ config('netgescon.version', '0.0.0') }}
Legenda:
U = utenti finali P = assistenza / sviluppatori E = errori non bloccanti E! = errori bloccanti
@php $path = base_path('docs/NETGESCON-MODIFICHE.md'); $raw = file_exists($path) ? file_get_contents($path) : "# Modifiche\n\nFile non trovato: {$path}\n"; $gitPath = base_path('docs/NETGESCON-GIT-AUTOCHANGELOG.md'); $gitRaw = file_exists($gitPath) ? file_get_contents($gitPath) : "# Git Auto Changelog\n\nFile non trovato: {$gitPath}\nEsegui: `bash scripts/ops/netgescon-sync-git-changelog.sh`\n"; // Mini-render: sostituisce tag tipo [U], [P], [E], [E!] con un quadratino colorato. $replacements = [ '[E!]' => 'E!', '[U]' => 'U', '[P]' => 'P', '[E]' => 'E', ]; $rawHtml = \Illuminate\Support\Str::markdown($raw); $rawHtml = str_replace(array_keys($replacements), array_values($replacements), $rawHtml); $gitRawHtml = \Illuminate\Support\Str::markdown($gitRaw); $gitRawHtml = str_replace(array_keys($replacements), array_values($replacements), $gitRawHtml); @endphp
{!! $rawHtml !!}
Changelog Automatico da Git
{!! $gitRawHtml !!}