File "TeamFactory.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/jetstream/database/factories/TeamFactory.php
File size: 598 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Database\Factories;

use App\Models\Team;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;

class TeamFactory extends Factory
{
    /**
     * The name of the factory's corresponding model.
     *
     * @var string
     */
    protected $model = Team::class;

    /**
     * Define the model's default state.
     *
     * @return array
     */
    public function definition()
    {
        return [
            'name' => $this->faker->unique()->company(),
            'user_id' => User::factory(),
            'personal_team' => true,
        ];
    }
}