Files
einundzwanzig-portal/database/factories/EventFactory.php
Benjamin Takats 648bc6395a meetups added
2022-12-12 17:44:24 +01:00

35 lines
720 B
PHP

<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use App\Models\Course;
use App\Models\CourseEvent;
use App\Models\Venue;
class EventFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = CourseEvent::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition(): array
{
return [
'course_id' => Course::factory(),
'venue_id' => Venue::factory(),
'from' => $this->faker->dateTime(),
'to' => $this->faker->dateTime(),
];
}
}