2023-04-19 12:00:31 +00: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 08:45:09 +00:00
|
|
|
<p>There are no storages added for this application.</p>
|
2023-04-19 12:00:31 +00:00
|
|
|
@endforelse
|
|
|
|
</div>
|