Files
fotospiel-app/database/factories/PhotoShareLinkFactory.php

30 lines
725 B
PHP

<?php
namespace Database\Factories;
use App\Models\Photo;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\PhotoShareLink>
*/
class PhotoShareLinkFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'photo_id' => Photo::factory(),
'slug' => Str::lower(Str::random(32)),
'expires_at' => now()->addDay(),
'created_by_device_id' => $this->faker->unique()->uuid(),
'created_ip' => $this->faker->ipv4(),
];
}
}