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