@extends('layouts.site') @section('title', 'Video Bid - '.$lot->title) @section('content') @include('partials.page-banner', ['title' => 'Video Bid'])
{{ $lot->title }}

{{ $lot->title }}

Description

{{ $lot->description }}

Condition

{{ $lot->condition }}

Live Bidding Activity

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

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

@if (session('status'))
{{ session('status') }}
@endif @auth
@csrf
$
@error('amount')

{{ $message }}

@enderror
@else

Log in to place a bid.

@endauth
@if ($relatedLots->isNotEmpty())

Related Auction Items

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