@extends('layouts.main') @section('title', 'Workspace: ' . $workspace->name) @section('content') @auth @if(Auth::user()->hasRole('company') || Auth::user()->hasRole('company-user')) @if(isset($isStorageFull) && $isStorageFull)
@elseif(isset($storageUsagePercentage) && $storageUsagePercentage >= 90)
@elseif(isset($storageUsagePercentage) && $storageUsagePercentage >= 80)
@endif @endif @endauth
{{ strtoupper(substr($workspace->name, 0, 1)) }}

Workspace: {{ $workspace->name }}

Workspace Details
Workspace Name: {{ $workspace->name }}
Description: {{ $workspace->description ?? 'No description provided' }}
Created: {{ $workspace->created_at->format('M d, Y H:i A') }}
Last Updated: {{ $workspace->updated_at->format('M d, Y H:i A') }}

Workspace Items

{{ $workspace->workspaceItems->count() }} Item(s)
@if($workspace->workspaceItems->count() > 0)
@foreach($workspace->workspaceItems as $index => $item)
{{ $item->name }}
{{ $item->type }} @if($isStorageFull ?? false) @else @endif
Fabric ID {{ $item->fabric_item_id }}
Created {{ $item->created_at->format('M d, Y') }}
@endforeach
@else
No Workspace Items Found

This workspace doesn't have any items yet.

Create Your First Pipeline
@endif
Workspace Actions
Back to Workspaces Edit Workspace
@csrf @method('DELETE')
@endsection @section('scripts') @endsection