Proje dosyaları eklendi

This commit is contained in:
2026-08-29 15:53:53 +03:00
commit d3313400ca
440 changed files with 24827 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
<?php
namespace Database\Factories; use App\Models\Project; use Illuminate\Database\Eloquent\Factories\Factory;
class KeywordFactory extends Factory { public function definition():array{$p=fake()->unique()->words(3,true);return ['project_id'=>Project::factory(),'phrase'=>$p,'normalized_phrase'=>mb_strtolower($p),'search_engine'=>'google','country_code'=>'TR','language_code'=>'tr','device'=>'desktop'];}}