@php use GuzzleHttp\Client; use Carbon\Carbon; $baseurl = 'https://propapi.testing.co.tz'; $sort_no = Config::get('app.sort_no'); $end_no = Config::get('app.end_no'); @endphp @extends('mainlayout') @section('title') MILIKI | My Plot @endsection @section('content')
@if(session('message')) @endif

Plot No{{$plot->plotnumber}}, {{$property->name}}

@php $images = $property->propertyimage; @endphp{{$property->name}} Image
@if($order->remaining_balance==0)

Payment Completed

Reference ID: {{$order->referenceid}}

@else

Next Payment

Due Date: {{$order->full_expiry_date}}

Remaining Amount: TZS {{number_format($order->remaining_balance)}}

Reference ID: {{$order->referenceid}}

@endif
@if($order->remaining_balance==0) Plot document Status @else Make Payment Cancel Order @endif

Project Details

Poject Name

{{$property->name}}

Plot No.

{{$plot->plotnumber}}

Region

{{$property->region}}

District

{{$property->district}}

Area Size

{{$plot->area_size}}sqm

Land Use.

{{$plot->landuse}}

Price

TZS {{number_format($order->amount)}}

Plot Order

Reference ID

{{$order->referenceid}}

Status.

{{$order->status_description}}

Amount In Full

TZS {{number_format($order->full_payment_amount)}}

Remaining Amount

TZS {{number_format($order->remaining_balance)}}

@php $createdAt = Carbon::parse($order->created_at); @endphp

Ordered Created Date

{{$createdAt->format('M d, Y')}}

Expiry Payment Date.

{{$order->initial_expiry_date}}

Penalty

{{$order->penalty}}

Transaction Details

@forelse($transactions as $transaction) @if($transaction->plotid == $plot->id) @endif @empty

No Transactions Made

@endforelse
Date Receipt Amount Type Via Balance Before Balance After
{{$transaction->date}} {{$transaction->receipt}} {{number_format($transaction->amount_paid)}} {{$transaction->trans_type}} {{$transaction->sourceInstitution}} {{number_format($transaction->balance_before_payment)}} {{number_format($transaction->balance_after_payment)}}
@endsection