id(); $table->foreignId('image_id')->nullable()->constrained('images')->nullOnDelete(); $table->string('title'); $table->text('description')->nullable(); $table->string('link')->nullable(); $table->dateTime('start_date')->nullable(); $table->dateTime('end_date')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('announcements'); } };