@extends('layouts.front.login-site') @section('content') {{-- Page Banner Begins --}}

Join us for an exclusive property auction event! Discover a range of premium properties available for bidding. Don't miss your chance to secure your dream home or investment property. Register now to participate and get all the latest updates.

Auction Banner
{{-- --}}
{{-- Page Banner Ends --}}
@if (count($upcomingAuctions) > 0)

Upcoming Auction

@foreach ($upcomingAuctions->take(6) as $item)
{{ $item->property->title }}
  • {{ $item->property->title }}
  • {{ $item->property->area }}
  • Current Bid: {{ $item->denomination }} {{ number_format($item->starting_price) }}
  • Starts: {{ $item->start_date }} Place a bid
@endforeach
@else @endif
{{-- bid-properties --}} @foreach ($liveAuction as $item)
{{ $item->property->title }}
  • {{ $item->property->title }}
  • {{ $item->property->area }}
  • Current Bid: {{ $item->denomination }} {{ number_format($item->starting_price) }}
  • Starts: {{ $item->start_date }} Place a bid
@endforeach
@endsection