id(); $table->string('name', 30); $table->string('email'); $table->string('contact_number', 15); $table->text('description'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('settings'); } };