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() && ($isStoreOwner ?? true))

Connect a WooCommerce store

  1. Download the Ladill plugin and upload it in WordPress under Plugins โ†’ Add New โ†’ Upload Plugin.
  2. Activate Ladill Woo Manager, then open WooCommerce โ†’ Ladill Woo.
  3. Click Connect with Ladill and sign in to link your store.
Download plugin (.zip)
@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(($isStoreOwner ?? true) && $store->status === \App\Models\WooStore::STATUS_ACTIVE) @if($currentStore?->id === $store->id) Managing now @elseif(($wooActiveStores ?? collect())->count() > 1)
@csrf
@endif @if($isStoreOwner ?? true)
@csrf @method('delete')
@endif @endif
@endforeach
@endif