@extends('dashboard.layouts.app')
@section('title', 'File Systems')
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
@if(count($fileSystems) === 0)
No tienes file systems
@else
| Nombre | Tamaño | Región | Estado | Acciones |
@foreach($fileSystems as $fs)
| {{ $fs['label'] ?? 'Sin nombre' }} | {{ $fs['size_gb'] ?? 'N/A' }} GB | {{ $fs['region'] ?? 'N/A' }} | {{ $fs['attached_to_instance'] ? 'Asignado' : 'Disponible' }} | |
@endforeach
@endif
@endsection