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

11 lines
389 B
PHP
Raw Normal View History

2023-04-19 14:00:31 +02:00
<div>
@forelse ($storages as $storage)
<p>Name:{{ data_get($storage, 'name') }}</p>
<p>MountPath:{{ data_get($storage, 'mount_path') }}</p>
<p>HostPath:{{ data_get($storage, 'host_path') }}</p>
<p>ContainerId:{{ data_get($storage, 'container_id') }}</p>
@empty
2023-05-04 10:45:09 +02:00
<p>There are no storages added for this application.</p>
2023-04-19 14:00:31 +02:00
@endforelse
</div>