@extends('layouts.user') @section('title', 'Following') @section('content')

Following

@forelse($list as $follow) @php $user = $follow->followee; @endphp

{{ $user?->name ?? 'Unknown' }}

{{ $user?->nurseProfile?->specialty ?? 'Healthcare Professional' }}

@if($user?->nurseProfile?->city || $user?->nurseProfile?->country)

{{ $user?->nurseProfile?->city ? $user->nurseProfile->city . ', ' : '' }}{{ $user?->nurseProfile?->country }}

@endif
{{ $follow->created_at?->diffForHumans() }}
@empty
You are not following anyone yet.
@endforelse
{{ $list->links() }}
@endsection