@extends('frontend.layouts.master') @section('title', @$data['title']) @section('content')
@include('frontend.include.sidebar')

{{ _trans('landlord.Due Payment')}}

@foreach ( @$data['due_payments'] as $due_payment ) @endforeach
{{ _trans('landlord.Order Number')}} {{ _trans('landlord.Month')}} {{ _trans('landlord.Amount')}} {{ _trans('landlord.Property Name')}} {{ _trans('landlord.Payment Status')}}

{{ @$due_payment->order_number }}

{{ @$due_payment->months }}

{{ @$due_payment->amount }}

{{ @$due_payment->property_name }} @if (@$due_payment->payment_status == 'paid') {{ @$due_payment->payment_status }} @else {{ @$due_payment->payment_status }} @endif
@endsection