@extends('layouts.user') @push('css') @endpush @section('title')

@lang('Welcome')!

@lang('Welcome To Your Account')
@endsection @section('content') @if (session('message'))
{{ session('message') }}
@endif @if (auth()->check() && !auth()->user()->hasVerifiedEmail()) @endif

@lang('Your Current Package'): {{ auth()->user()->plan != null ? auth()->user()->plan->title . '(' . Carbon\Carbon::parse(auth()->user()->plan_end_date)->format('d-m-Y') . ')' : 'N/A' }}

@if (auth()->user()->plan == null) @endif
My Activity
@lang('Contacted Properties') : {{ $contactsTotalCount ?? 0 }}
@lang('Seen Properties') : {{ $seenPropertyTotalCount ?? 0 }}
@lang('Wishlisted Properties') : {{ $savedPropertyTotalCount ?? 0 }}
Recent Searches
@include('user.partials.contacted_properties', [ 'contacts' => $contacts, 'currentFilter' => $currentFilter, ])
@lang('Referral URL')
@if (count($transactions) == 0) @else @foreach ($transactions as $key => $property) @endforeach @endif
@lang('No') @lang('Type') @lang('Txnid') @lang('Amount') @lang('Date')

{{ __('No Data Found') }}

{{ $loop->iteration }}
{{ strtoupper($property->type) }}
{{ $property->txnid }}

{{ $property->amount }}

{{ date('d M Y', strtotime($property->created_at)) }}
@endsection @push('js') @endpush