<?php

namespace Database\Factories;

use App\Models\EmbedCode;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;

class EmbedCodeFactory extends Factory
{
    /**
     * The name of the factory's corresponding model.
     *
     * @var string
     */
    protected $model = EmbedCode::class;

    /**
     * Define the model's default state.
     *
     * @return array
     */
    public function definition()
    {
        return [
            'code' => $this->faker->paragraph,
        ];
    }
}
