24 lines
583 B
PHP
Executable File
24 lines
583 B
PHP
Executable File
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Model Factories
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This directory should contain each of the model factory definitions for
|
|
| your application. Factories provide a convenient way to generate new
|
|
| model instances for testing / seeding your application's database.
|
|
|
|
|
*/
|
|
|
|
class UserFactory extends \Illuminate\Database\Eloquent\Factories\Factory
|
|
{
|
|
|
|
public function definition(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
} |