@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Order') }} ID: {{ $id->order_id }}

{{ __('Plan Type') }}
{{ ucfirst($id->frequency) }} {{__('plan') }}
{{ __('Plan Name') }}
{{ ucfirst($id->plan_name) }}
{{ __('Date') }}
{{ date_format($id->created_at, 'M d Y, H:i:s') }}
{{ __('Payment Gateway') }}
{{ $id->gateway }}
{{ __('Total') }}
{{ $id->price }} {{ $id->currency }}
{{ __('Status') }}
{{ ucfirst($id->status) }}
{{ __('Transaction Invoice') }}:
{{ __('Download Invoice') }}
@if ($id->gateway == 'BankTransfer')
{{ __('Payment Confirmation') }}:
@if (is_null($id->invoice)) {{ __('Upload Confirmation') }} @else {{ __('Download Confirmation') }} @endif
@endif
@endsection @section('js') @endsection