20 lines
417 B
PHP
20 lines
417 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class PushSubscriptionFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'user_id' => User::factory(),
|
|
'endpoint' => fake()->url(),
|
|
'public_key' => fake()->sha256(),
|
|
'auth_token' => fake()->sha256(),
|
|
];
|
|
}
|
|
}
|