id(); $table->foreignIdFor(User::class)->nullable(); $table->foreignIdFor(Quote::class)->nullable(); $table->foreignIdFor(RequestedQuote::class)->nullable(); $table->string('content'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('logs'); } };