Add WooCommerce product and category management.
Deploy Ladill Woo Manager / deploy (push) Successful in 55s

Sync catalog via plugin webhooks and REST proxy, with list/create/edit UI and updated logo from monolith assets.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-06 23:40:14 +00:00
co-authored by Cursor
parent 2a79f0fcca
commit e4b6c2c1ba
24 changed files with 1593 additions and 31 deletions
@@ -4,6 +4,8 @@ namespace App\Http\Controllers\Woo;
use App\Http\Controllers\Controller;
use App\Models\WooOrder;
use App\Models\WooProduct;
use App\Models\WooCategory;
use App\Models\WooStore;
use Illuminate\Http\Request;
use Illuminate\View\View;
@@ -22,6 +24,8 @@ class DashboardController extends Controller
WooOrder::FULFILLMENT_DELIVERED,
WooOrder::FULFILLMENT_CANCELLED,
])->count(),
'products' => WooProduct::query()->whereIn('woo_store_id', $storeIds)->count(),
'categories' => WooCategory::query()->whereIn('woo_store_id', $storeIds)->count(),
];
$recent = WooOrder::query()