id(); $table->foreignId('venue_id')->nullable()->constrained()->nullOnDelete(); $table->string('name', 255)->unique(); $table->date('event_date'); $table->string('poster', 255); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('events'); } };