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

12 lines
508 B
PHP
Raw Normal View History

2023-04-26 13:01:09 +02:00
<x-layout>
2023-05-17 09:26:50 +02:00
<x-applications.navbar :application="$application" />
2023-05-16 20:47:59 +02:00
<h1 class="py-10">Deployments</h1>
2023-04-19 12:42:15 +02:00
<div class="pt-2">
@forelse ($deployments as $deployment)
2023-05-03 08:51:03 +02:00
<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')" />
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>