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

16 lines
605 B
PHP
Raw Normal View History

<x-layout>
<h1>Application</h1>
<livewire:deploy-application :applicationId="$application->id" />
<livewire:application-form :applicationId="$application->id" />
<div>
2023-03-31 09:42:13 +02:00
<h2>Deployments</h2>
@foreach ($deployments as $deployment)
<p>
<a href="{{ url()->current() }}/deployment/{{ data_get($deployment->properties, 'deployment_uuid') }}">
{{ data_get($deployment->properties, 'deployment_uuid') }}</a>
2023-03-31 09:42:13 +02:00
{{ data_get($deployment->properties, 'status') }}
</p>
@endforeach
</div>
</x-layout>