ctrlpanel/database/factories/UsefulLinkFactory.php
2021-06-11 10:33:26 +02:00

32 lines
633 B
PHP

<?php
namespace Database\Factories;
use App\Models\UsefulLink;
use Illuminate\Database\Eloquent\Factories\Factory;
class UsefulLinkFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = UsefulLink::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'icon' => 'fas fa-user',
'title' => $this->faker->text(30),
'link' => $this->faker->url,
'description' => $this->faker->text,
];
}
}