{{ auth()->user()->full_name }}
{{ auth()->user()->email }}
- {{ __('web.rating') }} {{ auth()->user()->getRatingsCount() }} {{ __('web.stars') }}
- {{ __('web.join') }} {{ auth()->user()->created_at->diffForHumans() }}
- {{ __('web.location') }} {{ auth()->user()->location }}
About Me
{{ __('web.location') }}
{{ __('web.phone_number') }}
Notes
{{ Auth::user()->location }}
{{ __('web.phone_number') }}
{{ Auth::user()->phone_number }}
Notes
{{ __('web.profile_user_notes') }}
{{-- chat --}}
{{-- favorites --}}
{{-- ads --}}
{{-- history --}}
{{-- profile information --}}
{{-- users --}}
{{-- message content --}}
-
@foreach ($users as $us)
-
{{ $us->full_name }}
@endforeach
@foreach (auth()->user()->favorites as $favorite)
@endforeach
{{ $favorite->ad->name }}
{{ $favorite->ad->salary }}
{{ $favorite->ad->content }}
{{-- ad date and location --}}
{{ $favorite->ad->location }}
{{ $favorite->ad->created_at->diffForHumans() }}
@foreach (auth()->user()->ads as $ad)
@endforeach
{{ $ad->name }}
{{ $ad->salary }}
{{ $ad->content }}
{{-- ad date and location --}}
{{ $ad->location }}
{{ $ad->created_at->diffForHumans() }}
@foreach (auth()->user()->histories() as $histories)
@endforeach
@endforeach
{{ $histories->first()->created_at->format('Y-m-d') }}
@foreach ($histories as $history)