@extends('layouts.adminapp') @section('title') {{ __('lng.RentReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_rent_report', 'open') @section('active_rent_report', 'active') @section('content')

{{ __('lng.Print') }}

@include('PrintHeader.header')

{{__('lng.RentReport')}}

@php $i=0;@endphp @foreach ($PropertyRents as $PropertyRent) @php $expire = date("F-d-Y",strtotime($PropertyRent->expire));@endphp @if ($PropertyRent->member_id) @else @endif @endforeach
{{__('lng.SiNo')}} {{__('lng.Name')}} {{__('lng.Contact')}} {{__('lng.Property')}} {{__('lng.Advance')}} {{__('lng.MonthlyAmount')}} {{__('lng.ExpireDate')}}
{{++$i}}{{ $PropertyRent->Member->name }} {{ $PropertyRent->member->contact }}{{ $PropertyRent->name }} {{ $PropertyRent->phone }}{{$PropertyRent->Property->title}} @currency($PropertyRent->advance) @currency($PropertyRent->monthly_rent) {{$expire}}
{{ __('lng.Back') }}
@endsection