mirror of
https://github.com/coollabsio/coolify.git
synced 2025-12-28 05:34:50 +00:00
41 lines
921 B
PHP
41 lines
921 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Team;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Team>
|
|
*/
|
|
class TeamFactory extends Factory
|
|
{
|
|
protected $model = Team::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'name' => $this->faker->company().' Team',
|
|
'description' => $this->faker->sentence(),
|
|
'personal_team' => false,
|
|
'show_boarding' => false,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Indicate that the team is a personal team.
|
|
*/
|
|
public function personal(): static
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'personal_team' => true,
|
|
'name' => $this->faker->firstName()."'s Team",
|
|
]);
|
|
}
|
|
}
|