id(); $table->string('short_code', 2)->unique(); // ISO 639-1 language code (en, fr, de, etc.) $table->string('name'); // English name (English, French, German, etc.) $table->string('native_name')->nullable(); // Native name (English, Français, Deutsch, etc.) $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('languages'); } };