mirror of
https://github.com/snipe/snipe-it.git
synced 2026-04-08 08:49:02 +00:00
25 lines
443 B
PHP
25 lines
443 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\PredefinedKit;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<PredefinedKit>
|
|
*/
|
|
class PredefinedKitFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'name' => $this->faker->words(3, true),
|
|
];
|
|
}
|
|
}
|