Update version.blade.php

This commit is contained in:
Bozhidar Slaveykov 2024-04-04 19:59:12 +03:00
parent 63e02c3008
commit a27f4496dc

View file

@ -1,31 +1,34 @@
<x-filament-panels::page>
<h3 class="text-2xl font-bold tracking-tight text-gray-950 dark:text-white sm:text-3xl">
Microweber App Version
</h3>
<x-filament::card>
<h3 class="mb-2 text-xl font-bold tracking-tight text-gray-950 dark:text-white sm:text-2xl">
Microweber App Version
</h3>
<p>
Your app version is: {{ $appVersion }}<br>
Latest app version is: {{ $latestAppVersion }}<br>
Latest app download date: {{ $latestAppDownloadDate }}
</p>
</x-filament::card>
<p>
Your app version is: {{ $appVersion }}<br>
Latest app version is: {{ $latestAppVersion }}<br>
Latest app download date: {{ $latestAppDownloadDate }}
</p>
<x-filament::card>
<h3 class="mb-2 text-xl font-bold tracking-tight text-gray-950 dark:text-white sm:text-2xl">
Microweber App Templates
</h3>
<h3 class="text-2xl font-bold tracking-tight text-gray-950 dark:text-white sm:text-3xl">
Microweber App Templates
</h3>
<p>
Available App Templates ({{ $totalAppTemplates }})
</p>
<p>
Available App Templates ({{ $totalAppTemplates }})
</p>
<div>
@foreach ($appTemplates as $appTemplate)
<span>{{ $appTemplate['name'] }}</span>
@if (!$loop->last)
,
@endif
@endforeach
</div>
<div class="mt-4">
@foreach ($appTemplates as $appTemplate)
<span>{{ $appTemplate['name'] }}</span>
@if (!$loop->last)
,
@endif
@endforeach
</div>
</x-filament::card>
{{-- <div class="p-4 text-white rounded bg-green-500/90 dark:bg-green-500/30">