generated from liutk/owl-admin-base
29 lines
560 B
PHP
29 lines
560 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Feedback;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Feedback>
|
|
*/
|
|
class FeedbackFactory extends Factory
|
|
{
|
|
protected $model = Feedback::class;
|
|
|
|
protected static array $employees = [];
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'content' => fake()->paragraph(),
|
|
];
|
|
}
|
|
}
|