@extends('layouts.site') @section('title', $lot->title.' - Auctions Ontario') @section('content') @include('partials.page-banner', ['title' => 'Item Details'])

{{ $lot->title }}

Lot # : {{ $lot->lot_number }}

Category : {{ $lot->category->name ?? 'Uncategorized' }}

Auctioneer : {{ $lot->auction->auctioneer->name }}

{{ $lot->title }}
@forelse ($lot->images as $image)
@empty
@endforelse

Description

{{ $lot->description }}

Condition: {{ $lot->condition }}

Auctioneer

  • {{ $lot->auction->auctioneer->name }}
  • {{ $lot->auction->auctioneer->location }}
  • @if ($lot->auction->auctioneer->phone)
  • {{ $lot->auction->auctioneer->phone }}
  • @endif @if ($lot->auction->auctioneer->email)
  • Email Auctioneer
  • @endif

Current Highest Bid

$ {{ number_format($lot->current_bid ?? $lot->starting_bid, 2) }} CAD

{{ $lot->bid_count }} Bids

Starting Bid

$ {{ number_format($lot->starting_bid, 2) }} CAD
@if ($lot->ends_at)

Ends

{{ $lot->ends_at->format('M j, g:ia') }}
@endif

@if (session('status'))
{{ session('status') }}
@endif @auth

Place your Bid

Minimum Next Bid: $ {{ number_format(($lot->current_bid ?? $lot->starting_bid) + 1, 2) }} CAD

@csrf
$
@error('amount')

{{ $message }}

@enderror
PROCEED TO CHECKOUT @else

Log in to place a bid on this item.

@endauth

Bid History

@forelse ($lot->bids as $bid) @empty @endforelse
Bidder Amount Date
{{ $bid->user->name }} ${{ number_format($bid->amount, 2) }} {{ $bid->created_at->format('M j, Y') }}
No bids yet. Be the first to bid!
@if ($relatedLots->isNotEmpty())

Related Auction Items

@foreach ($relatedLots as $related) @include('partials.lot-card', ['lot' => $related]) @endforeach
@endif
@endsection