2021-06-11 08:33:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class UsefulLinkFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'icon' => 'fas fa-user',
|
|
|
|
'title' => $this->faker->text(30),
|
2023-01-05 17:02:35 +00:00
|
|
|
'link' => $this->faker->url(),
|
|
|
|
'description' => $this->faker->text(),
|
2021-06-11 08:33:26 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|