id(); $table->string('name')->nullable(); $table->text('description')->nullable(); $table->dateTime('event_date')->nullable(); $table->dateTime('applications_start_date')->nullable(); $table->dateTime('application_end_date')->nullable(); $table->boolean('is_active')->nullable(); $table->text('duration')->nullable(); $table->string('image')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('events'); } };