Files
einundzwanzig-portal/database/factories/VenueFactory.php
2022-12-12 19:17:09 +01:00

34 lines
676 B
PHP

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