2023-04-26 11:01:09 +00:00
|
|
|
<x-layout>
|
|
|
|
<h1>Deployments</h1>
|
|
|
|
<x-applications.navbar :applicationId="$application->id" />
|
2023-04-19 10:42:15 +00:00
|
|
|
<div class="pt-2">
|
|
|
|
@forelse ($deployments as $deployment)
|
2023-04-25 09:01:56 +00: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 10:42:15 +00:00
|
|
|
@empty
|
|
|
|
<p>No deployments found.</p>
|
|
|
|
@endforelse
|
|
|
|
</div>
|
2023-04-26 11:01:09 +00:00
|
|
|
</x-layout>
|