{{__('admin.Agent')}} |
{{ $order->agent->name }} |
{{__('admin.Plan name')}} |
{{ $order->plan_name }} |
{{__('admin.Plan type')}} |
{{ $order->plan_type }} |
{{__('admin.Plan price')}} |
{{ $currency_icon }}{{ $order->plan_price }} |
{{__('admin.Expiration')}} |
{{ $order->expired_time }} |
{{__('admin.Expired date')}} |
{{ $order->expiration_date }} |
{{__('admin.Remaining day')}} |
@if ($order->order_status == 'active')
@if ($order->expiration_date == 'lifetime')
{{__('admin.Lifetime')}}
@else
@php
$date1 = new DateTime(date('Y-m-d'));
$date2 = new DateTime($order->expiration_date);
$interval = $date1->diff($date2);
$remaining = $interval->days;
@endphp
@if ($remaining > 0)
{{ $remaining }} {{__('admin.Days')}}
@else
{{__('admin.Expired')}}
@endif
@endif
@else
{{__('admin.Expired')}}
@endif
|
{{__('admin.Number of property')}} |
@if ($order->number_of_property == -1)
{{__('admin.Unlimited')}}
@else
{{ $order->number_of_property }}
@endif
|
{{__('admin.Featured property')}} |
{{ $order->featured_property }}
|
{{__('admin.Number of featured property')}} |
@if ($order->featured_property_qty == -1)
{{__('admin.Unlimited')}}
@else
{{ $order->featured_property_qty }}
@endif
|
{{__('admin.Top property')}} |
{{ $order->top_property }}
|
{{__('admin.Number of top property')}} |
@if ($order->top_property_qty == -1)
{{__('admin.Unlimited')}}
@else
{{ $order->top_property_qty }}
@endif
|
{{__('admin.Urgent property')}} |
{{ $order->urgent_property }}
|
{{__('admin.Number of urgent property')}} |
@if ($order->urgent_property_qty == -1)
{{__('admin.Unlimited')}}
@else
{{ $order->urgent_property_qty }}
@endif
|
{{__('admin.Order status')}} |
@if ($order->order_status == 'active')
{{ $order->order_status }}
@else
{{ $order->order_status }}
@endif
|
{{__('admin.Payment status')}} |
@if ($order->payment_status == 'success')
{{ $order->payment_status }}
@else
{{ $order->payment_status }}
@endif
|
{{__('admin.Payment method')}} |
{{ $order->payment_method }}
|
{{__('admin.Transaction Id')}} |
{!! nl2br($order->transaction_id) !!}
|
@if ($order->payment_status == 'pending')