@extends('website.layouts.app')
@section('content')
Profile Preview
@if ($conversation->last_message->sender_id == Auth::id())
You:
@endif
{{ $conversation->last_message->message }}
No conversations yet
{{ $profile->real_name ?? 'Your Name' }}
{{ $profile->country ?? 'Your Country' }}
Profile
Change Password
{{ ucfirst($latestSubscription->subscription_type) }}
Subscription
You don't have any active
subscription
Previous Subscriptions
@if ($subscriptionHistory->isNotEmpty())
@foreach ($subscriptionHistory as $index => $sub)
#
Type
Start Date
End Date
{{-- Status --}}
@endforeach
@else
{{ $index + 1 }}
{{ ucfirst($sub->subscription_type) }}
{{ \Carbon\Carbon::parse($sub->subscription_start)->toFormattedDateString() }}
{{ \Carbon\Carbon::parse($sub->subscription_end)->toFormattedDateString() }}
@endif
No previous subscriptions found.
Messages
{{ $profile->nickname ?? $user->name }}
{{ $conversation->last_message->created_at->diffForHumans() }}