{{ ucfirst($providerValue) }}
{{ $integration->name }}
@if (! $integration->enabled)
{{ __('Disabled') }}
@endif
{{ $scopeLabel }}
·
{{ ucwords(str_replace('_', ' ', $statusValue)) }}
@if ($integration->last_checked_at)
·
{{ __('Checked') }} {{ $integration->last_checked_at->diffForHumans() }}
@endif
@if ($statusValue === 'error' && $integration->last_error)
{{ $integration->last_error }}
@endif
@if ($this->canManage)
{{ __('Edit') }}
@endif
{{-- Compact at-a-glance sync indicator for Shopify rows.
Detailed controls (Start / Cancel / Reset / Process
queue / Incremental) live on the Edit page. This
keeps the index a clean list — operators click
"Edit" to drill in. Both customers + orders pills
render unconditionally so the strip looks
consistent across rows. --}}
@if ($providerValue === 'shopify' && $integration->enabled && $statusValue === 'configured' && is_array($syncSummary))
@foreach ($syncSummary as $type => $entry)
{{ ucfirst($type) }}:
{{ $entry['label'] }}
@endforeach
{{ __('Manage sync →') }}