| {{ __('Order No') }} |
{{ $info->order_no }} |
| {{ __('Order Status') }} |
@if($info->status == 1) {{ __('Approved') }} @elseif($info->status == 2) {{ __('Pending') }}@elseif($info->status == 3) {{ __('Expired') }}@else {{ __('Cancelled') }} @endif |
| {{ __('Order Created Date') }} |
{{ $info->created_at->format('Y-m-d') }} |
| {{ __('Order Created At') }} |
{{ $info->created_at->diffForHumans() }} |
| {{ __('Order Will Be Expired') }} |
{{ $info->will_expire }} |
| {{ __('Order Amount') }} |
{{ amount_format($info->amount) }} |
| {{ __('Order Tax Amount') }} |
{{ amount_format($info->tax) }} |
| {{ __('Order Total Amount') }} |
{{ amount_format($info->tax+$info->amount) }} |
| {{ __('Plan Name') }} |
{{ $info->plan_info->name ?? '' }} |
| {{ __('Payment Mode') }} |
{{ $info->category->name ?? '' }} |
| {{ __('Transaction Id') }} |
{{ $info->trx }} |
| {{ __('Transaction Status') }} |
@if($info->payment_status==1)
{{ __('Paid') }}
@elseif($row->payment_status == 2)
{{ __('Pending') }}
@else
{{ __('Fail') }}
@endif
|