cart responsive, Checkout from cart

This commit is contained in:
Kevin Adametz 2020-08-14 18:32:41 +02:00
parent bde1095014
commit fb27009339
17 changed files with 501 additions and 319 deletions

View file

@ -20,6 +20,8 @@ class CreateShoppingInstancesTable extends Migration
$table->unsignedTinyInteger('payment');
$table->unsignedInteger('country_id');
$table->string('subdomain');
$table->text('shopping_data')->nullable();
$table->string('back');
$table->primary(['identifier']);

View file

@ -33,6 +33,7 @@ class CreateShoppingUsersTable extends Migration
$table->unsignedInteger('billing_country_id');
$table->string('billing_phone')->nullable();
$table->string('billing_email')->nullable();
$table->boolean('faker_mail')->default(false);
$table->unsignedSmallInteger('orders')->nullable()->default(1);
@ -59,6 +60,11 @@ class CreateShoppingUsersTable extends Migration
$table->char('mode', 4)->nullable();
$table->char('is_for', 2)->nullable();
$table->string('is_from', 10)->nullable();
$table->unsignedInteger('shopping_user_id')->index()->nullable();
$table->unsignedInteger('wp_order_number')->nullable();
$table->timestamp('wp_order_date')->nullable();