@extends('layouts.front-end.app') @section('title',\App\CPU\translate('Refund Details')) @push('css_or_js') @endpush @section('content')
@include('web-views.partials._profile-aside') @php($product = App\Model\Product::find($order_details->product_id)) @php($order = App\Model\Order::find($order_details->order_id))
VR Collection
@if ($refund->product!=null) {{$refund->product->name}} @else {{\App\CPU\translate('product_name_not_found')}} @endif
{{\App\CPU\translate('QTY')}} : {{$refund->order_details->qty}}
{{\App\CPU\translate('price')}} : {{\App\CPU\Helpers::currency_converter($refund->order_details->price)}}
@if ($order_details->variant!=null) {{\App\CPU\translate('variant')}} : {{$order_details->variant}} @endif
{{\App\CPU\translate('total_price')}} :
{{\App\CPU\Helpers::currency_converter($refund->order_details->price*$refund->order_details->qty)}}
{{\App\CPU\translate('total_discount')}} :
{{\App\CPU\Helpers::currency_converter($refund->order_details->discount)}}
{{\App\CPU\translate('total_tax')}} :
{{\App\CPU\Helpers::currency_converter($refund->order_details->tax)}}