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"; // 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); @endphp
{!! $rawHtml !!}