Setup : affichage du numéro de version dans l'assistant d'installation

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-04 22:12:04 +02:00
parent 79b831367c
commit 56dbd8a0bf
+8 -1
View File
@@ -16,7 +16,14 @@
<div class="text-center mb-8">
<div class="inline-flex items-center justify-center w-14 h-14 rounded-2xl bg-blue-600 text-white text-2xl font-bold mb-3 select-none">M</div>
<h1 class="text-2xl font-bold text-slate-800">MesRelevés</h1>
<p class="text-slate-500 text-sm mt-1">Assistant d'installation</p>
<p class="text-slate-500 text-sm mt-1">
Assistant d'installation
@php $version = trim(@file_get_contents(base_path('VERSION')) ?: ''); @endphp
@if($version)
<span class="mx-1.5 text-slate-300">·</span>
<span class="font-mono text-slate-400">v{{ $version }}</span>
@endif
</p>
</div>
{{-- Indicateur d'étapes --}}