Added Production build.

This commit is contained in:
2021-02-24 10:01:35 +01:00
commit 1e27c950c5
140 changed files with 14022 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace Database\Factories;
use App\Models\TimePeriod;
use Illuminate\Database\Eloquent\Factories\Factory;
class TimePeriodFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = TimePeriod::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
"name" => $this->faker->text(10)
];
}
}