update: new generate order number method

This commit is contained in:
tokumeikoi
2021-08-19 00:58:51 +09:00
parent c957a4ca83
commit abe1ebccae
4 changed files with 10 additions and 2 deletions

View File

@ -3,6 +3,7 @@
namespace App\Console\Commands;
use App\Models\Order;
use App\Utils\Helper;
use Illuminate\Console\Command;
class Test extends Command
@ -38,5 +39,6 @@ class Test extends Command
*/
public function handle()
{
dd(Helper::generateOrderNo());
}
}