reworked the guest pwa, modernized start and gallery page. added share link functionality.
This commit is contained in:
29
database/factories/PhotoShareLinkFactory.php
Normal file
29
database/factories/PhotoShareLinkFactory.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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(),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user