@include('coach.layouts.navbar')
{{-- @dd($unread) --}}
@forelse (Auth::user()->notifications as $notification)
@if($notification->type == "App\Notifications\coach\AssignStudentNotification")
@include('coach.notification.assigned-student-details')
@endif
@empty
You dont have any notifications.
@endforelse
@include('student.layouts.footer')
@endsection