id(); $table->unsignedBigInteger('user_id'); $table->string('action'); $table->nullableMorphs('loggable'); $table->timestamps(); $table->foreign('user_id') ->references('id')->on('users'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('admin_logs'); } };