@extends('owner.layouts.main') @section('title') Homevana @endsection @section('content')

Hello {{Auth::user()->first_name}} {{Auth::user()->last_name}}

Services

Maintenance Issue

View all
@foreach($maintanances as $maintanance ) @endforeach
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
@foreach($payments as $payment) @endforeach
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}}
@endsection