@extends('layouts.user') @section('content') @section('title')

@lang('Welcome')!

@lang('Buy/rent Details')
@endsection
@if ($data->rent_type == 'visit') @include('partials.user.property.visit') @endif @if ($data->type == 'for_buy' || $data->rent_type == 'immediately') @include('partials.user.property.immediately') @endif

{{__('Required Information')}}

@foreach ($requiredInformations as $key=>$value) @if ($value[1] == 'file') @else @endif @endforeach
{{$key}} :
{{$key}} : {{ $value[0] }}

{{__('Buy/Rent Details')}}

@if ($data->type == 'for_rent') @endif
{{__('Transaction No')}} : {{$data->transaction_no}}
{{__('Property Name')}} : {{ $property['name'] }}
{{__('User')}} : {{$data->user->name}}
{{__('Amount')}} : {{ showSignAmount($data->amount) }}
{{__('Guarantee Amount')}} : {{ showSignAmount($data->guarantee_amount) }}
{{__('Next Rent Given Time')}} : {{ Carbon\Carbon::parse($data->next_rent_time)->format('m-d-y') }}
@if ($data->phase == 3)

@lang('Please Download the contracts and sign here to upload')

@csrf
@endif @if ($data->phase == 5)

@lang('Please pay now amount is: ') {{ $property['type'] == 'for_rent' ? showSignAmount($data->guarantee_amount) : showSignAmount($data->amount)}}

@lang('Pay now')
@endif
@endsection