add guest invitation read & valide with route

This commit is contained in:
2020-08-21 11:37:52 +02:00
parent 0a819fbadf
commit bddf4e5c09
12 changed files with 271 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ $factory->define(Event::class, function (Faker $faker) {
'category_id' => factory(EventCategory::class),
'name' => $faker->words(3, [false]),
'description' => $faker->words(rand(10, 300), [false]),
'private' => rand(0,1),
'private' => !(rand(0,1)),
'start_date' => $startDate,
'end_date' => $endDate,
'location' => $faker->city,