@extends('backend.master') @section('title') {{ $title }} @endsection @section('content')

{{ _trans('common.Generated Bills') }}

@foreach($occupied_properties as $occupied) @endforeach
@if(!empty($bill))
{{ _trans('common.Bill Details') }}

@csrf
{{ _trans('common.Property') }} : {{ @$bill->property->name }}
{{ _trans('common.Tenant') }} : {{ @$bill->tenant->name }}
{{ _trans('common.Due Date') }} : {{ date('Y-m-d',strtotime(@$bill->orderDetail->end_date."-10 day")) }}
{{ _trans('common.Month of Bill') }} :
{{ _trans('common.Total Amount') }} : {{ @$bill->orderDetail->total_amount }}
@else

{{ _trans('common.Please select occupied property to generate bill') }}

@endif
@endsection