Files

32 lines
639 B
PHP

<?php
namespace Database\Factories;
use App\Models\ContenidoWeb;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\ContenidoWeb>
*/
class ContenidoWebFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = ContenidoWeb::class;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'quienessomos' => $this->faker->paragraph(3),
];
}
}