id(); $table->foreignId('invoice_id')->constrained(); $table->decimal('paid_amount', 15, 2); $table->string('status'); $table->string('payment_method')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('payments'); } };