coolify/resources/views/project/application/deployments.blade.php

12 lines
506 B
PHP
Raw Normal View History

2023-04-26 13:01:09 +02:00
<x-layout>
<h1>Deployments</h1>
<x-applications.navbar :applicationId="$application->id" />
2023-04-19 12:42:15 +02:00
<div class="pt-2">
@forelse ($deployments as $deployment)
2023-04-25 11:01:56 +02:00
<livewire:project.application.get-deployments :deployment_uuid="data_get($deployment->properties, 'deployment_uuid')" :created_at="data_get($deployment, 'created_at')" :status="data_get($deployment->properties, 'status')" />
2023-04-19 12:42:15 +02:00
@empty
<p>No deployments found.</p>
@endforelse
</div>
2023-04-26 13:01:09 +02:00
</x-layout>