id(); $table->foreignId('user_id')->constrained('users')->onDelete('cascade'); $table->decimal('amount', 10, 2); $table->string('currency')->default('AED'); $table->string('description'); $table->string('status')->default('success'); // success, failed, pending $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('payments'); } };