#19 - year periods (#25)

* #19 - year periods

* #19 - fix
This commit is contained in:
Adrian Hopek
2022-01-19 11:00:17 +01:00
committed by GitHub
parent 9aa2d5ec0f
commit 652587dbf1
6 changed files with 228 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class YearPeriodFactory extends Factory
{
public function definition(): array
{
return [
"year" => $this->faker->unique()->year,
];
}
}