1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Database\Factories;
- use App\Models\Post;
- use Illuminate\Database\Eloquent\Factories\Factory;
- class PostFactory extends Factory
- {
- /**
- * The name of the factory's corresponding model.
- *
- * @var string
- */
- protected $model = Post::class;
- /**
- * Define the model's default state.
- *
- * @return array
- */
- public function definition()
- {
- return [
- 'title' => trim($this->faker->sentence, '.'),
- 'content' => $this->faker->paragraphs(3, true),
- ];
- }
- }
|