id(); $table->string('code', 10)->unique()->comment('Language code (tr, en, de)'); $table->string('name', 100)->comment('Language name in English'); $table->string('native_name', 100)->comment('Language name in native language'); $table->string('flag', 10)->nullable()->comment('Flag emoji or icon code'); $table->enum('direction', ['ltr', 'rtl'])->default('ltr')->comment('Text direction'); $table->boolean('is_active')->default(true)->comment('Is language active?'); $table->boolean('is_default')->default(false)->comment('Is default language?'); $table->integer('sort_order')->default(0)->comment('Display order'); $table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete(); $table->foreignId('updated_by')->nullable()->constrained('users')->nullOnDelete(); $table->timestamps(); $table->softDeletes(); $table->index(['is_active', 'sort_order']); $table->index('code'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('languages'); } };