10-04-2026

This commit is contained in:
Kevin Adametz 2026-04-10 17:18:17 +02:00
parent 4d6b4930b2
commit 4bb89aad8c
836 changed files with 52961 additions and 5950 deletions

View file

@ -0,0 +1,42 @@
<?php
namespace Database\Factories;
use App\Models\DisplayVersion;
use App\Models\DisplayVersionItem;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @template TModel of \App\Models\DisplayVersionItem
*
* @extends \Illuminate\Database\Eloquent\Factories\Factory<TModel>
*/
class DisplayVersionItemFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var class-string<TModel>
*/
protected $model = DisplayVersionItem::class;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'display_version_id' => DisplayVersion::factory(),
'item_type' => 'video',
'content' => [
'filename' => 'test-video.mp4',
'title' => fake()->sentence(3),
'position' => 25,
],
'sort_order' => 0,
'is_active' => true,
];
}
}