@extends('layouts.tenant') @section('title', 'Integrations') @section('content')
Manage your external service integrations and webhooks
Total Integrations
{{ $stats['total'] }}
Active
{{ $stats['active'] }}
With Errors
{{ $stats['with_errors'] }}
Syncing
{{ $stats['syncing'] }}
| Service | Name | Status | Last Sync | Actions |
|---|---|---|---|---|
|
{{ strtoupper(substr($integration->service_name, 0, 2)) }}
{{ ucfirst($integration->service_name) }}
|
{{ $integration->name }}
@if($integration->description)
{{ Str::limit($integration->description, 50) }}
@endif
|
{{ $integration->is_active ? 'Active' : 'Inactive' }} @if($integration->sync_status !== 'idle') {{ ucfirst($integration->sync_status) }} @endif | @if($integration->last_sync_at) {{ $integration->last_sync_at->diffForHumans() }} @else Never @endif |