$category->id, 'image1' => 'project' . $i . '_image1.jpg', 'image2' => 'project' . $i . '_image2.jpg' ]); // ایجاد ترجمه‌ها ProjectTranslation::create([ 'project_id' => $project->id, 'locale' => 'fa', 'title' => 'پروژه ' . $i . ' - ' . $category->translations()->where('locale', 'fa')->first()->title, 'description' => 'توضیحات پروژه ' . $i . ' برای دسته‌بندی ' . $category->translations()->where('locale', 'fa')->first()->title, ]); ProjectTranslation::create([ 'project_id' => $project->id, 'locale' => 'en', 'title' => 'Project ' . $i . ' - ' . $category->translations()->where('locale', 'en')->first()->title, 'description' => 'Description for project ' . $i . ' in category ' . $category->translations()->where('locale', 'en')->first()->title, ]); } } } }