| 123456789101112131415161718192021222324 |
- <?php
- namespace Database\Factories;
- use Illuminate\Database\Eloquent\Factories\Factory;
- /**
- * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Model>
- */
- class CommentsFactory extends Factory
- {
- /**
- * Define the model's default state.
- *
- * @return array<string, mixed>
- */
- public function definition(): array
- {
- return [
- 'content' => $this->faker->paragraph(),
- 'is_banned' => $this->faker->boolean(70),
- ];
- }
- }
|