Stores

Stores

WooCommerce sites connected via the Ladill plugin.

@if(! $hasPaidPlan)

{{ $storeCount }}/{{ min($storeLimit, 1) }} store(s) on free plan

@endif
@if(! $hasPaidPlan && ! $canConnectMore) Upgrade for more stores @endif
@if($stores->isEmpty())

No stores connected yet. Install the Ladill plugin on WordPress and click Connect with Ladill.

@else
@foreach($stores as $store)

{{ $store->site_name ?? parse_url($store->site_url, PHP_URL_HOST) }}

{{ $store->site_url }}

Status: {{ ucfirst($store->status) }} @if($store->connected_at)ยท Connected {{ $store->connected_at->diffForHumans() }}@endif

@if($store->status === \App\Models\WooStore::STATUS_ACTIVE) @if($currentStore?->id === $store->id) Managing now @else
@csrf
@endif
@csrf @method('delete')
@endif
@endforeach
@endif