Initial commit

This commit is contained in:
2025-08-01 22:04:00 +02:00
commit d1f466d1d4
155 changed files with 15995 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
declare(strict_types=1);
namespace Database\Factories;
use App\Models\Certificate;
use App\Models\Resume;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Carbon;
/** @extends Factory<Certificate> */
final class CertificateFactory extends Factory
{
protected $model = Certificate::class;
public function definition(): array
{
return [
'name' => $this->faker->name(),
'date' => Carbon::now(),
'issuer' => $this->faker->word(),
'url' => $this->faker->url(),
'resume_id' => Resume::factory(),
];
}
}