@extends('layouts.app') @section('title_and_meta')
| Order ID | {{ $order->id }} | ||||
| Ordered Products | @foreach($order->orders as $pro)
{{ $pro->product_code }}
@endforeach |
||||
| Payment Method | {{ $order->payment_method }} | ||||
| Payment Status | @if($order->payment_method == 'Online') @if($order->online_payment_status == 'success' && $order->payment_status == 'PAID')PAID ({{ $order->online_payment_status }}) | @else @if($order->payment_status == 'PAID')PAID | @elsePENDING ( Failed ) | @endif @endif @endif @if($order->payment_method == 'COD') @if($order->payment_status == 'PAID')PAID | @elsePENDING | @endif @endif
| Sub Total | INR {{ $order->sub_total }} | ||||
| Discount Code | {{ $order->coupon_code }} | ||||
| Discounted Amount | INR {{ $order->coupon_amount }} | ||||
| Wallet Payment | INR - {{ $order->points_discount }} | ||||
| Grand Total | INR {{ $order->grand_total }} | ||||
| Created On | {{ $order->created_at }} |