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