%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/self/root/home/forge/api-takeaseat.eco-n-tech.co.uk/database/factories/
Upload File :
Create Path :
Current File : //proc/self/root/home/forge/api-takeaseat.eco-n-tech.co.uk/database/factories/ClientFactory.php

<?php

namespace Database\Factories;

use App\Models\Client;
use Illuminate\Database\Eloquent\Factories\Factory;

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

    /**
     * Define the model's default state.
     *
     * @return array
     */
    public function definition()
    {
        return [
            'therapist_id' => $this->faker->numberBetween(1, 100),
            'user_id' => $this->faker->numberBetween(1, 100),
        ];
    }
}

Zerion Mini Shell 1.0