Files
timebank-cc-public/database/factories/OrganizationFactory.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

26 lines
631 B
PHP

<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class OrganizationFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name' => $this->faker->company(),
'email' => $this->faker->safeEmail(),
'email_verified_at' => now(),
'profile_photo_path' => $this->faker->imageUrl(128, 128),
'about' => $this->faker->text(mt_rand(50, 300)),
'motivation' => $this->faker->text(mt_rand(50, 150)),
];
}
}