@extends('admin.layouts.app') @section('title', $title) @section('content')
Date Time: {{ $subscription->created_at }}
General:
Submitted: {{ $subscription->created_at->diffForHumans() }}Billing Details:
Name: {{ $subscription->user->name }}Item Purchased:
| Product | Quantity | Price |
|---|---|---|
| {!! $item->name !!} | {{ $item->quantity }} | {!! ch_format_price( $item->price, $order->currency ) !!} |
Payment Details:
| Payment method: | {{ $order->payment_method }} |
|---|---|
| Transaction ID | {{ $order->transaction_id }} |
Summary
| Subtotal: | {!! ch_format_price($order->subtotal, $order->currency) !!} |
|---|---|
| Tax: | {!! ch_format_price($order->tax_amount, $order->currency) !!} |
| Total: | {!! ch_format_price($order->total, $order->currency) !!} |
Related orders:
| Order | Date | Status | Total | Actions |
|---|---|---|---|---|
| #{{$order->order_reference}} | {{$order->created_at->format('F d, Y')}} | {{getConstantLabel('order_status', $order->status)}} | {!! ch_format_price($order->total, $order->currency) !!} | View |