diff --git a/resources/views/front/career/intern_dashboard.blade.php b/resources/views/front/career/intern_dashboard.blade.php
index 979bc26..5bbdb5d 100644
--- a/resources/views/front/career/intern_dashboard.blade.php
+++ b/resources/views/front/career/intern_dashboard.blade.php
@@ -660,11 +660,11 @@
@@ -673,7 +673,7 @@
- @if($intern->status === 'pending')
+ @if(in_array($intern->status, ['pending', 'waiting_document', 'reviewed']))
@@ -690,7 +690,7 @@
@else
- Başvurunuz bekleme aşamasında (beklemede) olmadığı için staj bilgilerinizi ve dosyanızı güncelleyemezsiniz.
+ Başvurunuz kabul veya ret durumunda olduğu için staj formunuzu ve tarihlerinizi güncelleyemezsiniz.
@endif
@@ -970,7 +970,7 @@
@php
- $userBlogs = $blogs ?? collect();
+ $userBlogs = ($blogs ?? collect())->sortByDesc('created_at');
$publishedBlogs = $userBlogs->where('status', 'published');
$publishedCount = $publishedBlogs->count();
$progressPercent = min(100, round(($publishedCount / 3) * 100));
@@ -1325,21 +1325,24 @@