@extends('admin.layouts.sellermastersoyuz') @section('title','Returned Orders |') @section('body') @component('seller.components.breadcumb',['secondactive' => 'active']) @slot('heading') {{ __('staticwords.ReturnedOrders') }} @endslot @slot('menu1') {{ __('staticwords.ReturnedOrders') }} @endslot @endcomponent
# | {{ __('staticwords.OrderID')}} | {{ __('staticwords.Item')}} | {{ __('staticwords.RefundedAmount')}} | {{ __('staticwords.RefundStatus')}} | @foreach($sellerorders 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 }} |
# | {{ __('staticwords.OrderType')}} | {{ __('staticwords.OrderID')}} | {{ __('staticwords.PendingAmount')}} | {{ __('staticwords.RequestedBy')}} | {{ __('staticwords.RequestedOn')}} | @foreach($sellerorders 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))}} |