id(); $table->string('title',100)->nullable(); $table->string('code',15)->nullable(); $table->date('start_date')->nullable(); $table->date('expire_date')->nullable(); $table->decimal('min_purchase')->default(0); $table->decimal('max_discount')->default(0); $table->decimal('discount')->default(0); $table->string('discount_type',15)->default('percentage'); $table->string('coupon_type')->default('default'); $table->integer('limit')->nullable(); $table->boolean('status')->default(1); $table->foreignId('restaurant_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('coupons'); } }