@extends('layouts.main') @section('title', $notebook->name . ' — Vena ETL Notebooks') @section('content')
{{ $notebook->source_table_name }}{{ $notebook->vena_template_id }}{{ $notebook->filter_expression }}{{ Str::limit($notebook->fabric_notebook_id, 18) }}
| Lakehouse Column | Vena Column |
|---|---|
{{ $src }} |
{{ $dst }} |
No runs yet.
| Started | Type | Status | Rows | Duration |
|---|---|---|---|---|
| {{ $run->started_at ? $run->started_at->format('d M H:i') : '—' }} | {{ ucfirst($run->run_type) }} | @switch($run->status) @case('success') Success @break @case('failed') Failed @break @default {{ ucfirst($run->status) }} @endswitch | @if($run->rows_sent !== null) {{ number_format($run->rows_sent) }} @else — @endif | {{ $run->duration_seconds ? $run->duration_seconds . 's' : '—' }} |
| {{ $run->error_message }} | ||||