@extends('frontend.layouts.usermaster') @section('user_content')

Interest request @if($invitations->count()>0) ({{ $invitations->count() }}) @endif


    @forelse($invitations as $invitation) @if($invitation->status===null)
  • Platinum user
    {{ $invitation->from_user->name }}
    1. City: {{ $invitation->from_user->profile->city->name }}
    2. Age: {{ $invitation->from_user->profile->age }}
    3. Height: {{ $invitation->from_user->profile->height }}
    4. Job: {{ $invitation->from_user->profile->career->type }}
    1. Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
    View full profile
    @csrf
    @csrf
  • @endif @empty

    No Invitations

    @endforelse

    @forelse($invitations as $invitation) @if($invitation->status==1)
  • Platinum user
    {{ $invitation->from_user->name }}
    1. City: {{ $invitation->from_user->profile->city->name }}
    2. Age: {{ $invitation->from_user->profile->age }}
    3. Height: {{ $invitation->from_user->profile->height }}
    4. Job: {{ $invitation->from_user->profile->career->type }}
    1. Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
    View full profile
    @csrf
  • @endif @empty

    No Invitations

    @endforelse

    @forelse($invitations as $invitation) @if($invitation->status===0)
  • Platinum user
    {{ $invitation->from_user->name }}
    1. City: {{ $invitation->from_user->profile->city->name }}
    2. Age: {{ $invitation->from_user->profile->age }}
    3. Height: {{ $invitation->from_user->profile->height }}
    4. Job: {{ $invitation->from_user->profile->career->type }}
    1. Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
    View full profile
    @csrf
  • @endif @empty

    No Invitations

    @endforelse

    @forelse($sent_invitations as $invitation)
  • Platinum user
    {{ $invitation->to_user->name }}
    1. City: {{ $invitation->to_user->profile->city->name }}
    2. Age: {{ $invitation->to_user->profile->age }}
    3. Height: {{ $invitation->from_user->profile->height }}
    4. Job: {{ $invitation->to_user->profile->career->type }}
    1. Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
    View full profile
    @csrf
  • @empty

    No Invitations

    @endforelse
@push('user-script') @endpush @endsection