@extends('template.layout') @section('title', 'Houses') @section('submenuItem', 'houses') @section('content') Here you can see the list of all available houses, flats or guildhalls. Please select the game world of your choice. Click on any view button to get more information about a house or adjust the search criteria and start a new search.


Available Houses and Flats in {{ $town['name'] }} on {{ \App\Utils\World::getCurrentWorld()['name'] }}
@foreach($houseList as $house) @php $rowClass = $loop->index % 2 == 0 ? 'Even' : 'Odd'; @endphp @endforeach
Name Size Rent Status
{{ $house->name }} {{ $house->size }} sqm {{ \App\Utils\FormatNumber::properConvert($house->rent) }} gold @if($house->owner === 0) @if($house->bid_end === 0) auctioned (no bid yet) @else auctioned ({{ \App\Utils\FormatNumber::properConvert($house->last_bid) }} gold; {{ Carbon\Carbon::now()->startOfDay()->diffInDays(Carbon\Carbon::createFromTimestamp($house->bid_end)) }} days left) @endif @else rented @endif


@csrf
House Search
@if(config('multi_world.enabled')) @endif
World
Town Status Order
@foreach(config('towns.town_ids') as $filterableTown) @if($filterableTown['filterable'])
@endif @endforeach







@endsection