id(); $table->string('name'); $table->string('printer_type'); $table->json('config')->nullable(); $table->string('driver'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('printers'); } };