id(); $table->foreignId('vendor_id')->constrained('users')->cascadeOnDelete(); $table->string('name'); $table->text('description')->nullable(); $table->string('address')->nullable(); $table->string('phone')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('venues'); } };