feat: add career application support for blog authors and expand blog status workflows

This commit is contained in:
Ümit Tunç
2026-08-07 23:21:17 +03:00
parent 9b91b3c847
commit 32b3f5187d
10 changed files with 75 additions and 23 deletions
@@ -1,6 +1,6 @@
@php
// Blog modelinden published içerikleri çek
$blogs = \App\Models\Blog::with(['category', 'author'])
$blogs = \App\Models\Blog::with(['category', 'author', 'careerApplication'])
->withCount('comments')
->published()
->latest('published_at')