@extends('admin.layouts.master-soyuz') @section('title',__('Pending Orders - ')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Pending Orders') }} @endslot @slot('menu2') {{ __("Pending Orders") }} @endslot @endcomponent
@if(count($orders)>0)
@foreach($orders as $order)

#{{ $inv_cus['order_prefix'].$order['orderid'] }}

{{ $order['total'] + $order['handlingcharge'] }}

{{__("Order By:")}} {{ $order['customername'] }}

{{__("Paid Via:")}} {{ $order['payment_method'] }}

{{ __('Cancel') }}
@if(!isset($checkOrderCancel) || !isset($orderlog)) @endif @endforeach
@else

{{ __("No Pending Orders !") }}

@endif
@endsection @section('custom-script') @endsection