Read Dokploy environments for composes
This commit is contained in:
@@ -118,6 +118,11 @@
|
||||
{{ $application['id'] }}
|
||||
</x-filament::badge>
|
||||
@endif
|
||||
@if(!empty($application['environment']))
|
||||
<x-filament::badge color="gray" :icon="Heroicon::RectangleStack">
|
||||
Env: {{ $application['environment'] }}
|
||||
</x-filament::badge>
|
||||
@endif
|
||||
@if(!empty($application['repository']))
|
||||
<x-filament::badge color="gray" :icon="Heroicon::CodeBracket">
|
||||
{{ $application['repository'] }}
|
||||
@@ -184,6 +189,11 @@
|
||||
{{ $compose['id'] }}
|
||||
</x-filament::badge>
|
||||
@endif
|
||||
@if(!empty($compose['environment']))
|
||||
<x-filament::badge color="gray" :icon="Heroicon::RectangleStack">
|
||||
Env: {{ $compose['environment'] }}
|
||||
</x-filament::badge>
|
||||
@endif
|
||||
<x-filament::badge color="gray" :icon="Heroicon::Clock">
|
||||
Last deploy:
|
||||
{{ $compose['last_deploy'] ? \Illuminate\Support\Carbon::parse($compose['last_deploy'])->diffForHumans() : '—' }}
|
||||
@@ -235,6 +245,11 @@
|
||||
{{ $service['id'] }}
|
||||
</x-filament::badge>
|
||||
@endif
|
||||
@if(!empty($service['environment']))
|
||||
<x-filament::badge color="gray" :icon="Heroicon::RectangleStack">
|
||||
Env: {{ $service['environment'] }}
|
||||
</x-filament::badge>
|
||||
@endif
|
||||
@if(!empty($service['version']))
|
||||
<x-filament::badge color="gray" :icon="Heroicon::Cube">
|
||||
{{ $service['version'] }}
|
||||
|
||||
Reference in New Issue
Block a user