@extends('layouts.app') @section('content') @if(session('error')) @endif @if(session('success')) @endif @livewire('announcement') @livewire('header') @livewire('pageac', ['title' => 'My Account'])
@livewire('accountsidebar')
{{ $profile->name }}
{{ $profile->name }}
{{ $profile->profile_id }}
Email
{{$user->email}}
@if($subscription) @if($subscription->plan_name)
Plan Name
{{ $subscription->plan_name }}
@endif @if($subscription->start_date)
Start Date
{{ \Carbon\Carbon::parse($subscription->start_date)->format('d F Y') }}
@endif @if($subscription->end_date)
End Date
{{ \Carbon\Carbon::parse($subscription->end_date)->format('d F Y') }}
@endif @else

No subscription details available.

@endif
  • {{ $profile->name }}'s Profile
  • Horoscope
  • Request
  • Message
@foreach($profile->toArray() as $key => $value) @if(!in_array($key, ['id', 'user_id', 'user_uuid', 'address', 'height_ft', 'weight_kg', 'education_stream', 'specialization', 'working_location', 'created_at','updated_at'])) @endif @endforeach
{{ ucwords(str_replace('_', ' ', $key)) }} @if($key == 'caste_free') {{ $value == 1 ? 'Yes, I am open to marrying from other communities or castes' : 'No' }} @elseif($key == 'country') {{ $country ? $country->name : 'Not Provided' }} @elseif($key == 'state') {{ $state ? $state->name : 'Not Provided' }} @elseif($key == 'city') {{ $city ? $city->name : 'Not Provided' }} @else @if($value === null || $value === '') Not Provided @else {{ $value }} @endif @endif

Under Construction

Under Construction

@livewire('footer') @endsection