@extends('owner.layouts.main') @section('content')

Maintenance

@foreach($maintanances as $maintanance)
profile

{{$maintanance->buyer->first_name}} {{$maintanance->buyer->last_name}}

{{$maintanance->buyer->phone_number}}

{{$maintanance->buyer->email}}

{{$maintanance->description}}

Time

{{$maintanance->created_at->format('h:i A')}}

Date

{{$maintanance->created_at->format('d F,Y')}}

@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}}
@endforeach

Showing {{$maintanances->firstItem()}} to {{$maintanances->lastItem()}} of {{$maintanances->total()}} Listings

@endsection