{{ PageTitle::getTitle(false) }}
@if (is_plugin_active('language'))
@include('plugins/real-estate::themes.dashboard.layouts.language-switcher')
@endif
{{ __('Go to homepage') }}
@if (auth('account')->check() &&
!auth('account')->user()->canPost() &&
auth('account')->user()->user_types != 'buyer' &&
strrpos(url()->current(), env('APP_URL') . '/account/properties/view/') == '')
{{ trans('plugins/real-estate::package.add_credit') }}
@endif
@if (url()->current() === env('APP_URL') . '/account/properties')
@include('plugins/real-estate::themes.dashboard.partials.properties-list')
@endif
@if (strrpos(url()->current(), env('APP_URL') . '/account/properties/view/') != '')
@php
$propertyData = getProductDetail(request()->segment(count(request()->segments())));
$property = $propertyData['productDetails'];
@endphp
@else
@yield('content')
@endif
{{ $property->name }}
{!! RvMedia::image($property->images, $property->name) !!}
@if ($property->bidCloseDate == null)Bid Ending Time:
@include(Theme::getThemeNamespace( 'views.real-estate.properties.property-auction-timer'), ['fullTimer' => true] ) @endif
@if ($propertyData['bidWinner'])
@endif
{{ trans('plugins/real-estate::bidding.bidWinner') }}
Username | {{ $propertyData['bidWinner']->name }} |
{{ $propertyData['bidWinner']->email }} | Winning Date | {{ $property->bidCloseDate }} |
Bid Price | {{ $propertyData['bidWinner']->bid_amount }} |
Total Bids: -
@yield('content')