@extends('frontend.layouts.master') @section('title', @$data['title']) @section('content')
@include('frontend.include.sidebar')

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

@forelse ($data['order_history'] as $history) @empty

No data found

@endforelse
{{ _trans('landlord.Order Number')}} {{ _trans('landlord.Order Date')}} {{ _trans('landlord.Total Amount')}} {{ _trans('landlord.Payment Status')}} {{ _trans('landlord.Order Status')}} {{ _trans('landlord.Discount Amount')}} {{ _trans('landlord.Paid Amount')}} {{ _trans('landlord.Due Amount')}}

{{@$history->order_number}}

{{@$history->order_date}}

${{@$history->total_amount}}

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

${{@$history->discount_amount}}

${{@$history->paid_amount}}

${{@$history->due_amount}}

{!! $data['order_history']->links() !!}
@endsection