@extends('member') @section('content')
Cover Image
@if (Auth::user()->profile_photo) @else @endif
{{-- --}}

{{ $currentUser->name }}

{{ $currentUser->designation }} - {{ $currentUser->current_office }}

Basic Infos

{{-- --}}
@if ($currentUser->contact_privacy === 1) @endif

MEMBERSHIP FEE

Amount: ₹2000.00

STATUS

@if ($annualStatus === 1)
Paid
@elseif ($annualStatus === 2)
Waiting for approval
@elseif ($annualStatus === 3) Pay again @else Make Payment @endif

BENEVOLENT FUND

Amount: ₹20000.00

STATUS

@if ($bFundStatus === 1)
Paid
@elseif ($bFundStatus === 2)
Waiting for approval
@elseif ($bFundStatus === 3) Pay again @else Make Payment @endif

Birthday this month

@foreach ($birthdays as $birthday)
@if ($birthday->profile_photo) @else @endif

{{ $birthday->date_of_birth }}

{{ $birthday->name }}

@endforeach

Retirement this month

@foreach ($anniversaries as $user)
@if ($user->profile_photo) @else @endif

{{ $user->marriage_anniversary }}

{{ $user->name }}

@endforeach

Posts

{{-- @foreach ($posts as $post) --}} @foreach ($posts as $post)
User Profile Photo

{{ $post->title }}

{{-- --}}
@endforeach {{-- @endforeach --}}
@endsection