@extends('layouts.front.login-site') @section('content') @php // Assuming you have two dates $now = \Carbon\Carbon::now(); $startDate = \Carbon\Carbon::parse($bidProperty->start_date . ' ' . $bidProperty->start_time); $endDate = \Carbon\Carbon::parse($bidProperty->end_date . ' ' . $bidProperty->end_time); @endphp
@if ($outBid == 'Yes') You have been outbid Place a new Bid @endif
res-1
@foreach ($bidProperty->amenities->take(3) as $key => $item) res-{{ $key }} @endforeach

{{ $bidProperty->property->title }}

Time left: | {{ $endDate->format('D, g:ia') }}
Current Bid {{ $bidProperty->denomination }} {{ number_format($highestBid) }} | Starting Bid {{ $bidProperty->denomination }} {{ number_format($bidProperty->starting_price) }} | {{ count($bidProperty->auctionBid) }} Bids

Description

{{ $bidProperty->property->description }}

{{-- Include other components as needed --}} @include('front.users.liveAuction.bid.table') @include('front.users.liveAuction.bid.bid-amount')
@endsection