id(); $table->string('name'); $table->string('location')->nullable(); $table->string('status')->default('offline'); // online, offline, error $table->decimal('temperature', 5, 2)->nullable(); $table->string('firmware_version')->nullable(); $table->timestamp('last_heartbeat_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('machines'); } };