Order Numbers
When an order is created, a unique order number will be generated. It'll often be formatted like so: #1234
.
By default, order numbers will start at #2000
and will continue endlessly. If you wish for order numbers to start at say, #5000
, you can configure that in your config/simple-commerce.php
config file.
1<?php 2 3return [ 4 ... 5 6 /* 7 |-------------------------------------------------------------------------- 8 | Order Number 9 |--------------------------------------------------------------------------10 |11 | If you want to, you can change the minimum order number for your store. This won't12 | affect past orders, just ones in the future.13 |14 */15 16 'minimum_order_number' => 2000,17];