Add per-store managers for Woo Business accounts.
Deploy Ladill Woo Manager / deploy (push) Successful in 39s

Agencies can invite store-scoped managers via Identity, with access limited to one WooCommerce store while owners retain full multi-store control.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-08 07:51:08 +00:00
co-authored by Cursor
parent 1b0831b176
commit 09359ca86a
26 changed files with 921 additions and 28 deletions
@@ -18,7 +18,11 @@ class StoreSwitchController extends Controller
'store' => ['required', 'integer'],
]);
$stores->switch($this->accountUser($request), (int) $validated['store']);
$stores->switch(
$this->accountUser($request),
(int) $validated['store'],
$this->storeScope($request),
);
return redirect()->back();
}