feat: enhance company history module with new font styles, improved localization functions, and optimized layout for better readability

This commit is contained in:
Ümit Tunç
2026-05-21 19:43:54 +03:00
parent 4150931ac8
commit 69710a71b9
6 changed files with 108 additions and 24 deletions
+3 -2
View File
@@ -3,6 +3,7 @@
namespace Database\Seeders;
use App\Models\Page;
use App\Models\User;
use Illuminate\Database\Seeder;
class PageSeeder extends Seeder
@@ -13,9 +14,9 @@ class PageSeeder extends Seeder
public function run(): void
{
// İlk kullanıcıyı bul veya oluştur
$author = \App\Models\User::first();
$author = User::query()->first();
if (!$author) {
$author = \App\Models\User::create([
$author = User::query()->create([
'name' => 'Admin',
'email' => 'admin@truncgil.com',
'password' => bcrypt('password'),