@extends('layouts.main') @section('title', 'My Workspaces - Prolytics Connect') @section('content') @if($assignedWorkspaces->count() > 0) @foreach($assignedWorkspaces as $workspace)
{{ strtoupper(substr($workspace->name, 0, 1)) }}

Workspace: {{ $workspace->name }}

{{ $workspace->description ?: 'No description available' }}
Create data Pipeline
@if($workspace->workspaceItems->count() > 0)
@foreach($workspace->workspaceItems as $index => $item)
{{ ucfirst($item->type) }}: {{ $item->name }}
Last Activity Run: {{ $item->last_activity_run }}
Next Activity Run: {{ $item->next_activity_run }}

@php $activities = $item->real_activities ?? $item->sample_activities ?? []; @endphp @forelse($activities as $activity) @empty @endforelse
Activity Name Activity Status Run Start Duration Input Output
{{ $activity['name'] }} {{ $activity['status'] }} {{ $activity['last_run'] }} {{ $activity['duration'] }}
No activity data available
@endforeach
@else

No items assigned to this workspace yet.

@endif
@endforeach @else

No Workspaces Assigned

You don't have any workspaces assigned to your account yet.

Contact your administrator to get workspace access.

@endif @endsection
Pipeline: Get_Customer_info_Pipeline
Last Activity Run: 09-16-2025 08:00 am
Next Activity Run: 09-16-2025 08:00 pm

Activity Name Activity Status Run Start Duration Input Output
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
D

Workspace: DemoWorkSpace.

Workspace Settings
Create data Pipeline
Pipeline: Demo_Pipeline
Last Activity Run: 09-16-2025 08:00 am
Next Activity Run: 09-16-2025 08:00 pm

Activity Name Activity Status Run Start Duration Input Output
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Pipeline: Demo_Pipeline_02
Last Activity Run: 09-16-2025 08:00 am
Next Activity Run: 09-16-2025 08:00 pm

Activity Name Activity Status Run Start Duration Input Output
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Pipeline: Employee_data_Pipeline
Last Activity Run: 09-16-2025 08:00 am
Next Activity Run: 09-16-2025 08:00 pm

Activity Name Activity Status Run Start Duration Input Output
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
Invoke Pipeline In Progress 09-16-2025 08:00 am 16s
@endsection