Your IP : 216.73.216.130


Current Path : /home/forge/stage.sksb.smartcon-survey.com/database/factories/
Upload File :
Current File : /home/forge/stage.sksb.smartcon-survey.com/database/factories/DepartmentFactory.php

<?php

namespace Database\Factories;

use Illuminate\Database\Eloquent\Factories\Factory;

class DepartmentFactory extends Factory
{
    /**
     * Define the model's default state.
     *
     * @return array
     */
    public function definition()
    {
        return [
            'name' => 'Beispiel Abteilung',
        ];
    }
}