@extends('layouts.site') @php $label = $auctioneer->type === 'liquidator' ? 'Liquidator' : 'Auctioneer'; @endphp @section('title', $auctioneer->name.' - Auctions Ontario') @section('content') @include('partials.page-banner', ['title' => $label.' Details'])
{{ $auctioneer->name }}
Upcoming Auctions

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

No upcoming auctions posted yet.

@endforelse
Contact {{ $label }}

{{ $auctioneer->name }}

{{ $auctioneer->bio }}

@endsection