@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
@csrf
Enter Bid
Your Limit:
Your Character:


Bids increase in steps of 1 gold. You will automatically outbid the current bid by 1 gold until your specified limit is reached.
@if($house->bid_end === 0)
When the auction ends, the winning bid plus the rent of {{ $house->rent }} gold for the first month will be debited to the depot of {{ \App\Utils\Town::getTownById($house->town_id)['name'] }}.
@else
When the auction ends at {{ date('M d Y, H:i:s T', $house->bid_end) }} (time of daily server save), the winning bid plus the rent of {{ $house->rent }} gold for the first month will be debited to the depot of {{ \App\Utils\Town::getTownById($house->town_id)['name'] }}.
@endif

@endsection