@extends('layouts.app') @push('page_style') @endpush @section('content')

Rented Property

@forelse($rented_property as $item) @empty

No data!!

@endforelse
ID Name Bed Bath Guest Price Rent due date Created Date Action
{{ $item->id }} {{ $item->product->name }} {{ $item->product->bed }} {{ $item->product->bath }} {{ $item->product->guest }} {{ $item->product->price }}{{ $item->product->type == 'rent' ? ' / per month' : '' }} Payment Due in {{ 30 - $item->created_at->diffInDays(\Carbon\Carbon::now()) }} days {{ \Carbon\Carbon::parse($item->created_date)->format('Y-m-d') }} Payment History
@endsection