@extends('backend.master') @section('title') {{ $title }} @endsection @section('content')
@forelse ($reports as $row) @empty @endforelse
{{ _trans('common.SR No.') }} {{ _trans('common.Property') }} {{ _trans('common.Owner') }} {{ _trans('common.Size') }} {{ _trans('common.Bedroom') }} {{ _trans('common.Type') }} {{ _trans('common.Available') }}
{{ $loop->iteration }} {{ $row->user->name }} {{ $row->size }} {{ _trans('common.sqft') }} {{ $row->bedroom }}
{{ $row->deal_type == 1 ? 'Rent' : 'Sell' }}
@if(request('status') == 'occupied') {{ date('M d,Y', strtotime($row->orderDetail->end_date)) }} @else @if($row->advertisement->advertisement_type == 1) {{ date('M d,Y', strtotime($row->advertisement->rent_end_date)) }} @endif @endif
@endsection