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

11 lines
357 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
<p>No storage found.</p>
@endforelse
</div>