Hello {{Auth::user()->first_name}} {{Auth::user()->last_name}}
{{$property_visits}}
Total Visitors
{{$current_rent_properties}}
Property For Rent
{{$current_sale_properties}}
Property For Sale
Services
Maintenance Issue
View all| Issues | Date | Time | Status |
|---|---|---|---|
|
{{$maintanance->issue_title}} {{ Str::limit($maintanance->description, 15, '...') }} |
{{$maintanance->created_at->format('d F, Y')}} |
{{$maintanance->created_at->format('h:i A')}} |
@php
$status_class='typ-waiting';
if($maintanance->status=="Complete"){
$status_class='typ-complete';
}else if($maintanance->status=="In Progress"){
$status_class='typ-progress';
}
@endphp
{{$maintanance->status}}
|
Payments List
View all| Date | Amount | Status |
|---|---|---|
|
{{$payment->date->format('d F,Y')}} |
₹ {{$payment->amount}}.00* |
@php
$payment_status_class='typ-waiting';
if($payment->status=="Paid"){
$payment_status_class='typ-complete';
}else if($payment->status=="Under Background"){
$payment_status_class='typ-progress';
}
@endphp
{{$payment->status}}
|