add user search in SearchController, add start and end datetime in events table

This commit is contained in:
2025-12-09 12:28:02 +01:00
parent da20be4558
commit 8426755db3
89 changed files with 4684 additions and 11 deletions
@@ -15,6 +15,8 @@ return new class extends Migration
$table->id();
$table->string('name');
$table->string('description');
$table->dateTime('start')->nullable();
$table->dateTime('end')->nullable();
$table->timestamps();
});
}