@extends('layouts.new_theme') @section('content')
{{ __('Order details are listed here') }}.
| # | {{ __('Plan') }} | {{ __('Billing cycle') }} | {{ __('Price') }} | {{ __('Paid amount') }} | {{ __('Payment status') }} | {{ __('Date') }} | @if($invoice->refund_date){{ __('Refund date') }} | @endif
|---|---|---|---|---|---|---|---|
| 1 | {{ __($plan->name) }} | {{ $validity }} | {{$pricing->currencies->prefix }}{{ number_format($pricing->price, 2) }} {{ $invoice->currency }} | {{$pricing->currencies->prefix }}{{ $invoice->amount != null ? number_format(($invoice->amount - $invoice->discount_amount), 2) : number_format($invoice->amount,2) }} {{$pricing->currencies->currency }} | {{ __($invoice->payment_status) }} | {{ $invoice->created_at }} | @if($invoice->refund_date){{ $invoice->refund_date }} | @endif