exchange/database/factories/CategoryFactory.php

35 lines
749 B
PHP

<?php
namespace Database\Factories;
use App\Models\Category;
use Illuminate\Database\Eloquent\Factories\Factory;
class CategoryFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Category::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'title' => $this->faker->unique()->randomElement([
'Nebit-himiýa önümleri',
'Oba hojalyk önümleri',
'Maşyngurluşyk önümleri',
'Ýeňil senagat önümleri',
'Gurluşyk önümleri'
]),
];
}
}