id(); $table->foreignId('city_id')->constrained()->cascadeOnDelete(); $table->string('name'); $table->string('slug')->nullable()->index(); $table->text('description')->nullable(); $table->string('address')->nullable(); $table->string('website')->nullable(); $table->unsignedBigInteger('created_by')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('venues'); } };