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

Xero Accounting Notebooks

Fabric Notebooks that extract Xero Accounting data to your Lakehouse
New Xero Notebook
@if($notebooks->isEmpty())
No Xero notebooks yet

Create your first Xero Accounting notebook to start extracting financial data into your Lakehouse.

Create Xero Notebook
@else
@foreach($notebooks as $nb)
{{ $nb->name }}
{{ $nb->workspace->name ?? '—' }}
{{ $nb->status_label }}
{{ $nb->connection->tenant_name ?? '—' }}
{{ $nb->load_type }} @foreach(array_slice($nb->entities ?? [], 0, 4) as $ent) {{ $ent }} @endforeach @if(count($nb->entities ?? []) > 4) +{{ count($nb->entities) - 4 }} more @endif
@if($nb->last_run_at)
Last run: {{ $nb->last_run_at->diffForHumans() }}
@endif
@endforeach
{{ $notebooks->links() }}
@endif
@endsection @section('scripts') @endsection