Once installed, you'll see a "Simple Commerce" section in the Control Panel navigation. It provides easy access to Orders, Products, Coupons, etc.
If you want to hide pages from the Control Panel navigation, you can use the Nav Customizer .
Simple Commerce comes with a few helpful widgets you can add to your site's dashboard.
The Orders Chart widget displays a line chart of paid orders over the last 30 days.
// config/statamic/cp.php'widgets' => [['type' => 'orders_chart','width' => 100,],],
// config/statamic/cp.php'widgets' => [['type' => 'orders_chart','width' => 100,],],
The Recent Orders widget displays a list of the site's recent orders.
// config/statamic/cp.php'widgets' => [['type' => 'recent_orders','width' => 50,'limit' => 5,],],
// config/statamic/cp.php'widgets' => [['type' => 'recent_orders','width' => 50,'limit' => 5,],],
By default, it'll only show 5 orders but you can adjust the limit
however you'd like.
The Top Customers widget displays a list of the site's top customers (those with the most orders).
// config/statamic/cp.php'widgets' => [['type' => 'top_customers','width' => 50,'limit' => 5,],],
// config/statamic/cp.php'widgets' => [['type' => 'top_customers','width' => 50,'limit' => 5,],],
By default, it'll only show 5 customers but you can adjust the limit
however you'd like.
The Low Stock Products widget displays a list of products with low stock.
// config/statamic/cp.php'widgets' => [['type' => 'low_stock_products','width' => 50,'limit' => 5,],],
// config/statamic/cp.php'widgets' => [['type' => 'low_stock_products','width' => 50,'limit' => 5,],],
By default, it'll only show 5 products but you can adjust the limit
however you'd like.