26 lines
535 B
PHP
26 lines
535 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Factories;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||
|
|
||
|
/**
|
||
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\DirectionDescription>
|
||
|
*/
|
||
|
class DirectionDescriptionFactory extends Factory
|
||
|
{
|
||
|
/**
|
||
|
* Define the model's default state.
|
||
|
*
|
||
|
* @return array<string, mixed>
|
||
|
*/
|
||
|
public function definition(): array
|
||
|
{
|
||
|
return [
|
||
|
'file_name' => fake()->name(),
|
||
|
'position' => 1,
|
||
|
'url' => fake()->url(),
|
||
|
];
|
||
|
}
|
||
|
}
|