Current File : /home/getxxhzo/app.genicards.com/database/factories/PatientFactory.php |
<?php
namespace Database\Factories;
use App\Models\Patient;
use Illuminate\Database\Eloquent\Factories\Factory;
class PatientFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Patient::class;
/**
* Define the model's default state.
*/
public function definition(): array
{
return [
'created_at' => $this->faker->date('Y-m-d H:i:s'),
'updated_at' => $this->faker->date('Y-m-d H:i:s'),
];
}
}