mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
16 lines
308 B
PHP
16 lines
308 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class ContactsListFactory extends Factory
|
|
{
|
|
public function definition()
|
|
{
|
|
return [
|
|
'title' => $this->faker->title,
|
|
'description' => $this->faker->paragraph,
|
|
];
|
|
}
|
|
}
|