#19 - year periods

This commit is contained in:
Adrian Hopek
2022-01-19 10:42:04 +01:00
parent 91bd46cc36
commit 7826185339
7 changed files with 232 additions and 15 deletions

View File

@@ -5,12 +5,21 @@ declare(strict_types=1);
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Carbon;
use Toby\Models\User;
use Toby\Models\YearPeriod;
class DatabaseSeeder extends Seeder
{
public function run(): void
{
User::factory(10)->create();
YearPeriod::factory([
"year" => Carbon::now()->year,
])->create();
YearPeriod::factory([
"year" => Carbon::now()->year + 1,
])->create();
}
}