@extends('layouts.main') @section('title', 'Vena ETL Notebooks — Prolytics Connect') @section('content')

Vena ETL Notebooks

Fabric Notebooks that send Lakehouse data to Vena ETL templates
New Vena Notebook
@if($notebooks->isEmpty())
No Vena notebooks yet

Create your first Vena notebook to start sending Lakehouse data to your Vena ETL templates.

Create Vena Notebook
@else
@foreach($notebooks as $nb)
{{ $nb->name }}
{{ $nb->workspace->name ?? '—' }}
{{ $nb->status_label }}
{{ $nb->source_table_name }} {{ $nb->transfer_mode === 'data_array' ? 'Array' : 'CSV' }}
@if($nb->venaConnection)
{{ $nb->venaConnection->name }} {{ $nb->venaConnection->vena_hub }}
@endif @if($nb->last_run_at)
Last run: {{ $nb->last_run_at->diffForHumans() }} @if($nb->last_rows_sent !== null) — {{ number_format($nb->last_rows_sent) }} rows @endif
@endif
@endforeach
{{ $notebooks->links() }}
@endif
@endsection @section('scripts') @endsection