This commit is contained in:
Andras Bacsai
2023-04-19 14:00:31 +02:00
parent f61a67279a
commit 2e8b1134b9
14 changed files with 127 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
<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>