You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
459 B
28 lines
459 B
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Admin;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class AdminFactory extends Factory
|
|
{
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = Admin::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|
|
|