id(); $table->morphs('billable'); $table->string('paddle_id')->unique(); $table->string('paddle_subscription_id')->nullable()->index(); $table->string('invoice_number')->nullable(); $table->string('status'); $table->string('total'); $table->string('tax'); $table->string('currency', 3); $table->timestamp('billed_at'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('transactions'); } };