id(); $table->string('name'); $table->string('phone')->nullable(); $table->string('email')->nullable(); $table->text('comment')->nullable(); $table->softDeletes(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('clients'); } };