coolify/resources/views/project/application/deployments.blade.php
2023-05-10 12:22:27 +02:00

12 lines
553 B
PHP

<x-layout>
<h1>Deployments</h1>
<x-applications.navbar :applicationId="$application->id" :gitBranchLocation="$application->gitBranchLocation" />
<div class="pt-2">
@forelse ($deployments as $deployment)
<livewire:project.application.get-deployments :deployment_uuid="data_get($deployment->properties, 'type_uuid')" :created_at="data_get($deployment, 'created_at')" :status="data_get($deployment->properties, 'status')" />
@empty
<p>No deployments found.</p>
@endforelse
</div>
</x-layout>