@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