id(); $table->string('ip', 40); $table->enum('device_type', ['tablet', 'desktop', 'phone']); $table->string('user_agent', 255); $table->string('country', 255)->nullable(); $table->string('url', 255); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('hitcounts'); } };