*/ class ProductFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { $rand = rand(1,2); $title = ($rand == 1?'موبایل':'تبلت').' ' . $this->faker->unique()->firstNameFemale; return [ // 'name' => $title, 'slug' => StarterKitFacade::slug($title), 'excerpt' => $this->faker->realText(150), 'user_id' => 1, 'cat_id' => $rand, 'description' => $this->faker->realText(600), ]; } }