Files

28 lines
554 B
PHP
Raw Permalink Normal View History

2024-09-06 19:39:04 -05:00
<?php
2025-01-28 17:33:54 -06:00
declare(strict_types=1);
2024-09-06 19:39:04 -05:00
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Portfolio>
*/
class PortfolioFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
2025-01-27 20:04:03 -06:00
'title' => $this->faker->words(4, true),
2024-09-06 19:39:04 -05:00
'created_at' => now(),
'updated_at' => now(),
];
}
}