id(); $table->foreignId('order_id'); $table->foreignId('user_id'); $table->string('order_status',50); $table->string('image')->nullable(); $table->string('customer_reason')->nullable(); $table->text('customer_note')->nullable(); $table->text('admin_note')->nullable(); $table->decimal('refund_amount')->default(0); $table->string('refund_status',50); $table->string('refund_method',100); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('refunds'); } }