@extends('admin.layouts.master-soyuz') @section('title',__('Invoice Setting |')) @section('body') @component('admin.component.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('Retured Orders') }} @endslot @slot('menu2') {{ __("Orders and Invoices") }} @endslot @slot('menu3') {{ __("Retured Orders") }} @endslot @endcomponent
{{ $error}}
@endforeach# | {{__("Order ID")}} | {{__("Item")}} | {{__('Refunded Amount')}} | {{__("Refund Status")}} | @foreach($orders as $key=> $order) @if(isset($order->getorder->order) && $order->status != 'initiated')
---|---|---|---|---|
{{ $key+1 }} | #{{ $inv_cus->order_prefix.$order->getorder->order->order_id }}
{{ __("View Detail") }} |
@if(isset($order->getorder->variant)) {{$order->getorder->variant->products->name}} ({{ variantname($order->getorder->variant) }}) @endif @if(isset($order->getorder->simple_product)) {{$order->getorder->simple_product->product_name}} @endif | {{ $order->amount }} |
# | {{__("Order TYPE")}} | {{__("OrderID")}} | {{__("Pending Amount")}} | {{__("Requested By")}} | {{__("Requested on")}} | @foreach($orders as $key=> $order) @if(isset($order->getorder->order) && $order->status == 'initiated')
---|---|---|---|---|---|
{{ $key+1 }} | @if($order->getorder->order->payment_method != 'COD') @else @endif | #{{ $inv_cus->order_prefix.$order->getorder->order->order_id }}
{{ __("UPDATE ORDER") }} |
{{ $order->amount }} | {{ $order->user->name }} | {{date('d-M-Y | h:i A',strtotime($order->created_at))}} |