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

Location: {{ $auction->location }}

Starts: {{ optional($auction->starts_at)->format('D, M j, Y g:ia') }}

Ends: {{ optional($auction->ends_at)->format('D, M j, Y g:ia') }}

{{ $auction->description }}

Auctioneer

{{ $auction->auctioneer->name }}

{{ $auction->auctioneer->location }}

{{ $auction->auctioneer->phone }}

View Profile

LOTS IN THIS AUCTION

@forelse ($auction->lots as $lot) @include('partials.lot-card', ['lot' => $lot]) @empty

No lots have been added to this auction yet.

@endforelse
@endsection