id(); $table->string('name'); $table->string('contact_person')->nullable(); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->text('address')->nullable(); $table->string('tax_number')->nullable(); $table->decimal('credit_limit', 14, 2)->default(0); $table->decimal('outstanding_balance', 14, 2)->default(0); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('customers'); } };