Files
crater/database/factories/CompanyFactory.php
Mohit Panjwani bdea879273 v6 update
2022-01-10 16:06:17 +05:30

33 lines
682 B
PHP

<?php
namespace Database\Factories;
use Crater\Models\Company;
use Crater\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
class CompanyFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Company::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'unique_hash' => str_random(20),
'name' => $this->faker->name(),
'owner_id' => User::where('role', 'super admin')->first()->id,
'slug' => $this->faker->word
];
}
}