23 lines
503 B
PHP
23 lines
503 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\SocialLink;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<SocialLink>
|
|
*/
|
|
class SocialLinkFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'platform' => fake()->randomElement(['Instagram', 'Facebook', 'Email', 'Telegram']),
|
|
'url' => fake()->url(),
|
|
'icon' => 'link',
|
|
'sort_order' => fake()->numberBetween(0, 10),
|
|
];
|
|
}
|
|
}
|