@extends('layouts.admin') @section('content')
| {{ __('ID#') }} | {{ $user->id }} |
|---|---|
| {{ __('User Type') }} | {{ ucfirst($user->user_type) }} |
| {{ __('Username') }} | {{ $user->name }} |
| {{ __('Email') }} | {{ $user->email }} |
| {{ __('Phone No.') }} | {{ $user->phone }} |
| {{ __('Address') }} | {{ $user->address }} |
| {{ __('City') }} | {{ $user->city }} |
| {{ __('Zip Code') }} | {{ $user->zip }} |
Package For: {{ ucwords($activePlan->user_type ?? '?') }}
Property Type: {{ ucwords($activePlan->property_type ?? '?') }}
Sale Type: {{ ucwords(str_replace('_', ' ', $activePlan->sale_type ?? '?')) }}
Package Title: {{ ucwords($activePlan->title ?? '?') }}
Package Sub-Title: {{ ucwords($activePlan->subtitle ?? '?') }}
Add Validity: {{ $activePlan->plan_type ?? '?' }} days
Package Price: ₹{{ $activePlan->price ?? '?' }}
Listing Limit: {{ $activePlan->post_limit ?? '?' }}
Ad Duration: {{ $activePlan->post_duration ?? '?' }}
@lang('Activated At'): {{ $startDate ? $startDate->format('d M, Y h:i A') : '?' }}
@lang('Expires At'): {{ $endDate ? $endDate->format('d M, Y h:i A') : '?' }}
@lang('Slot'): {{ $activePlan->slot ?? '-' }}
@lang('Boost'): {{ $activePlan->boost ? $activePlan->boost."x" : '-' }}
@lang('No active plan')