id(); $table->string('name'); $table->string('slug')->unique(); $table->string('color', 7)->nullable(); // hex renk $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('genres'); } };