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

Deel HR Notebooks

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

Create your first Deel HR notebook to start extracting HR data into your Lakehouse.

Create Deel Notebook
@else
@foreach($notebooks as $nb)
{{ $nb->name }}
{{ $nb->workspace->name ?? '—' }}
{{ $nb->status_label }}
{{ $nb->load_type }} @foreach($nb->entities ?? [] as $ent) {{ $ent }} @endforeach
@if($nb->last_run_at)
Last run: {{ $nb->last_run_at->diffForHumans() }}
@endif
@endforeach
{{ $notebooks->links() }}
@endif
@endsection @section('scripts') @endsection