id(); $table->enum('level', LogLevelEnum::toArray()); $table->string('message'); $table->json('context')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('logs'); } };