ruạṛ
<?php namespace Database\Factories; use App\Models\City; use Illuminate\Database\Eloquent\Factories\Factory; class CityFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = City::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'name' => $this->faker->word(), 'state_id' => $this->faker->word(), 'created_at' => $this->faker->date('Y-m-d H:i:s'), 'updated_at' => $this->faker->date('Y-m-d H:i:s'), ]; } }
cải xoăn