@extends('layouts.front.login-site')
@section('content')
{{-- Page Banner Begins --}}
@if (count($upcomingAuctions) > 0)
Upcoming Auction
@foreach ($upcomingAuctions->take(6) as $item)
- {{ $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->area }}
- Current Bid:
{{ $item->denomination }}
{{ number_format($item->starting_price) }}
-
Starts:
{{ $item->start_date }}
Place a bid
@endforeach
@endsection