id(); $table->string('name'); $table->enum('type', ['hotel', 'restaurant', 'bar', 'beach', 'pool', 'watersports']); $table->string('address')->nullable(); $table->enum('group', ['seven', 'city_center', 'coral_bay']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('venues'); } };