feat: show version number on welcome screen when logged in

This commit is contained in:
Benjamin Nussbaum 2025-05-06 13:19:02 +02:00
parent 56210405ff
commit 4de1403105
4 changed files with 32 additions and 0 deletions

View file

@ -31,4 +31,10 @@
</nav>
@endif
</header>
@auth
@if(config('app.version'))
<flux:text class="text-xs">Version: <a href="https://github.com/usetrmnl/byos_laravel/releases/"
target="_blank">{{ config('app.version') }}</a></flux:text>
@endif
@endauth
</x-layouts.auth.card>