wip
This commit is contained in:
10
resources/views/project/applications/deployments.blade.php
Normal file
10
resources/views/project/applications/deployments.blade.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<x-applications.layout :applicationId="$application->id" title="Deployments">
|
||||
<div class="pt-2">
|
||||
@forelse ($deployments as $deployment)
|
||||
<livewire:poll-deployment :deployment_uuid="data_get($deployment->properties, 'deployment_uuid')" :created_at="data_get($deployment, 'created_at')" :status="data_get($deployment->properties, 'status')" />
|
||||
|
||||
@empty
|
||||
<p>No deployments found.</p>
|
||||
@endforelse
|
||||
</div>
|
||||
</x-applications.layout>
|
||||
Reference in New Issue
Block a user