id(); $table->string('name'); $table->string('email')->nullable(); $table->string('logo')->nullable(); $table->string('website')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('companies'); } };