@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 }}
- City: {{ $invitation->from_user->profile->city->name }}
- Age: {{ $invitation->from_user->profile->age }}
- Height:
{{ $invitation->from_user->profile->height }}
- Job: {{ $invitation->from_user->profile->career->type }}
- Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
View full
profile
@endif
@empty
No Invitations
@endforelse
@forelse($invitations as $invitation)
@if($invitation->status==1)
-
Platinum user
{{ $invitation->from_user->name }}
- City: {{ $invitation->from_user->profile->city->name }}
- Age: {{ $invitation->from_user->profile->age }}
- Height:
{{ $invitation->from_user->profile->height }}
- Job: {{ $invitation->from_user->profile->career->type }}
- Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
View full
profile
@endif
@empty
No Invitations
@endforelse
@forelse($invitations as $invitation)
@if($invitation->status===0)
-
Platinum user
{{ $invitation->from_user->name }}
- City: {{ $invitation->from_user->profile->city->name }}
- Age: {{ $invitation->from_user->profile->age }}
- Height:
{{ $invitation->from_user->profile->height }}
- Job: {{ $invitation->from_user->profile->career->type }}
- Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
View full
profile
@endif
@empty
No Invitations
@endforelse
@forelse($sent_invitations as $invitation)
-
Platinum user
{{ $invitation->to_user->name }}
- City: {{ $invitation->to_user->profile->city->name }}
- Age: {{ $invitation->to_user->profile->age }}
- Height:
{{ $invitation->from_user->profile->height }}
- Job: {{ $invitation->to_user->profile->career->type }}
- Request on: {{ $invitation->created_at->format('h:i A, d F Y') }}
View full
profile
@empty
No Invitations
@endforelse
@push('user-script')
@endpush
@endsection