id(); $table->string('code', 3)->unique(); // USD, EUR, BHD $table->string('name'); $table->string('symbol', 10)->nullable(); $table->integer('decimal_places')->default(2); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('currencies'); } };