CasperSecurity
<?php
namespace Database\Factories;
use App\Models\StudentInfo;
use Illuminate\Database\Eloquent\Factories\Factory;
class StudentInfoFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = StudentInfo::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name'=> $this->faker->name(),
'email'=> $this->faker->unique()->safeEmail(),
'contact'=> $this->faker->unique()->phoneNumber(),
'address'=> $this->faker->address(),
];
}
}