$model
$model : string
The name of the factory's corresponding model.
<?php
/**
* JingYao-backend
*
* @link https://gitee.com/wang-zhihui-release/jingyao-backend
* @apiDocument https://gitee.com/wang-zhihui-release/jingyao-backend/wikis/
*/
namespace Database\Factories;
use App\Models\Company;
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 [
'name' => $this->faker->company,
'cover_url' => $this->faker->imageUrl(),
'brief' => $this->faker->text,
'status' => 1,
'push_time' => time() - rand(0, (7 * 24 * 3600)),
'area' => rand(12, 14),
];
}
}