Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/database/factories/Auth/
Upload File :
Current File : /var/www/html/bookstack/database/factories/Auth/RoleFactory.php

<?php

namespace Database\Factories\Auth;

use Illuminate\Database\Eloquent\Factories\Factory;

class RoleFactory extends Factory
{
    /**
     * The name of the factory's corresponding model.
     *
     * @var string
     */
    protected $model = \BookStack\Auth\Role::class;

    /**
     * Define the model's default state.
     *
     * @return array
     */
    public function definition()
    {
        return [
            'display_name' => $this->faker->sentence(3),
            'description'  => $this->faker->sentence(10),
        ];
    }
}