@extends('template.layout') @section('title', 'Houses') @section('submenuItem', 'houses') @section('content') The house {{ $house->name }} is currently rented by {{ $house->ownerPlayer->name }}. He will move out on {{ \Carbon\Carbon::parse($house->moveOut->date)->format('M, d, Y') }}, {{ config('server.serverSaveTime') }} {{ config('server.serverTimeZone') }} @if($house->moveOut->transfer) and wants to pass the house to {{ $house->moveOut->transfer->player->name }} for {{ $house->moveOut->transfer->price }} gold coins. @endif If you want to take this house, fill in the form and click on "Submit".

@csrf
Accept House Transfer
Your Answer: Yes, I want to take this house for {{ $house->moveOut->transfer->price }} gold.
No, I don't want to take this house.
Your Account Password:


Please make sure that you pay the cost for this house transfer and that you can afford to pay the following monthly rents. The rent is currently paid until {{ date('M d, Y', $house->paid) }}. Note that no door list but only the guest list is reset.

@endsection