@extends('layouts.tenant') @section('title', 'Integrations') @section('content')

Integrations

Manage your external service integrations and webhooks

Add Integration

Total Integrations

{{ $stats['total'] }}

Active

{{ $stats['active'] }}

With Errors

{{ $stats['with_errors'] }}

Syncing

{{ $stats['syncing'] }}

@if(request()->hasAny(['search', 'service', 'status'])) Clear @endif
@if($integrations->count() > 0)
@foreach($integrations as $integration) @endforeach
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
View Edit @if($integration->canRetry())
@csrf
@endif
@csrf
@if($integrations->hasPages())
{{ $integrations->links() }}
@endif @else

No integrations

Get started by creating your first integration.

@endif
@endsection @push('scripts') @endpush