19 lines
385 B
PHP
19 lines
385 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class FaqFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'question' => fake()->sentence(),
|
|
'answer' => fake()->paragraph(),
|
|
'link' => 'https://example.com',
|
|
'link_text' => 'Learn More',
|
|
];
|
|
}
|
|
}
|