Fix: AI Blog Assistant retry logic and Subdomain routing for Akademi

This commit is contained in:
Muhammet Güler
2026-02-16 14:55:06 +03:00
parent 0fa8e4e435
commit 7101f7878a
10 changed files with 458 additions and 1 deletions
+38
View File
@@ -0,0 +1,38 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class BlogTopicSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
$topics = [
'Yapay Zeka ve İş Dünyası',
'Mobil Uygulama Geliştirme Trendleri',
'E-Ticaretin Geleceği',
'Siber Güvenlik Önlemleri',
'Blockchain Teknolojisi',
'Bulut Bilişim Avantajları',
'Nesnelerin İnterneti (IoT) Uygulamaları',
'Veri Analitiği ve Büyük Veri',
'Dijital Dönüşüm Stratejileri',
'Web Yazılım Teknolojileri'
];
foreach ($topics as $topic) {
DB::table('blog_topics')->insert([
'name' => $topic,
'context' => 'Trunçgil Teknoloji çözümlerine ve uzmanlığına vurgu yapın.',
'status' => 'active',
'created_at' => now(),
'updated_at' => now(),
]);
}
}
}