Merge branch 'main' into directory-refactor

# Conflicts:
#	app/Architecture/Providers/AppServiceProvider.php
#	app/Eloquent/Observers/YearPeriodObserver.php
This commit is contained in:
Adrian Hopek
2022-01-26 08:58:57 +01:00
33 changed files with 979 additions and 55 deletions

View File

@@ -0,0 +1,23 @@
<?php
declare(strict_types=1);
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Toby\Eloquent\Models\Holiday;
use Toby\Eloquent\Models\YearPeriod;
class HolidayFactory extends Factory
{
protected $model = Holiday::class;
public function definition(): array
{
return [
"name" => $this->faker->word,
"date" => $this->faker->unique->date,
"year_period_id" => YearPeriod::current()->id,
];
}
}