@extends('template.layout')
@section('title', 'House')
@section('submenuItem', 'houses')
@section('content')
The house {{ $house->name }} is currently being auctioned.
@if($house->bid_end === 0)
There is no bid so far.
@else
The auction will end at {{ date('M d Y, H:i:s T', $house->bid_end) }} (time of daily server save). The highest bid so far is {{ $house->last_bid }} gold and has been submitted by {{ $house->highestBidderPlayer->name }}
@endif