{{ $userWorkspaces }}

My Workspaces

Your total workspaces

{{ $userWorkspaceItems }}

My Pipelines

Total data pipelines

{{ $activeWorkspaceItems }}

Active Pipelines

Currently running

{{ $inactiveWorkspaceItems }}

Inactive Pipelines

Not currently active

Current Month Usage
{{ date('M Y') }} View Details

{{ number_format($currentMonthMetrics['cu_raw'], 0) }}

Total Compute Units

This month's CU consumption

{{ number_format($currentMonthMetrics['duration_raw'], 0) }}

Total Duration

Seconds of operation

My Workspaces

Manage and organize your data workspaces

View Workspaces
Create Workspace

Start a new workspace for your projects

Create New
Profile Settings

Update your account information

Edit Profile

Account Information

Company
{{ $user->company ?? 'Not Set' }}
Email Status
@if($emailVerified)
Verified
@else
Pending
@endif
Member Since
{{ $accountCreated->format('M Y') }}
Last Update
{{ $lastUpdated->diffForHumans() }}
@if($workspaces->count() > 0)

My Workspaces

View All
@foreach($workspaces as $workspace)
{{ $workspace->name }}
@if($workspace->description)

{{ Str::limit($workspace->description, 60) }}

@endif
{{ $workspace->created_at->format('M d, Y') }} {{ $workspace->workspaceItems->count() }} item(s)
@endforeach
@else

No Workspaces Yet

Get started by creating your first workspace to organize your data pipelines and manage your projects effectively.

Create Your First Workspace
@endif @if($recentWorkspaces->count() > 0)

Recent Activity

@foreach($recentWorkspaces as $workspace) @endforeach
Workspace Description Pipelines Created Action
{{ $workspace->name }} {{ Str::limit($workspace->description, 50) }} {{ $workspace->workspaceItems->count() }} items {{ $workspace->created_at->diffForHumans() }} View
@endif