id(); $table->foreignIdFor(User::class)->nullable(); $table->string('loggable_type'); $table->integer('loggable_id'); $table->string('action'); $table->text('content'); $table->string('ip'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('logs'); } };