@extends('frontend.layouts.master') @section('title', @$data['title']) @section('content')
@include('frontend.include.sidebar')
{{ _trans('landlord.Total Order')}}

{{ @$data['order'] }}

{{ _trans('landlord.My Wishlist')}}

{{ @$data['wishlist']->count() }}

{{ _trans('landlord.Purchase Amount')}}

{{ $data['totalAmount'] }}

{{ _trans('landlord.Product in Cart')}}

{{ @$data['cart'] }}

{{ _trans('landlord.Coupon Used')}}

{{ @$data['coupon'] }}

{{ _trans('landlord.Completed Order')}}

{{$data['complete_order'] ?? 0}}

{{ _trans('landlord.Purchase History')}}

{{ _trans('landlord.See all')}}
@forelse ($data['order_history'] as $history) @empty

No data found

@endforelse
{{ _trans('landlord.Details')}} {{ _trans('landlord.Amount')}} {{ _trans('landlord.Status')}}

{{@$history->order_number}}

{{@$history->order_date}}

{{@$history->total_amount}}

{{@$history->order_status}}
@endsection