@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
{{-- Summary bar --}}
{{ count($orders) }} {{ __('Pending') }}
{{ __('Click any order to view full details') }}
@if(count($orders) > 0)
@foreach($orders as $order)
{{-- Left accent + status --}}
{{ __('Pending') }}
{{-- Main info --}}
#{{ $inv_cus['order_prefix'].$order['orderid'] }}
{{ $order['customername'] }} {{ $order['payment_method'] }} {{ \Carbon\Carbon::parse($order['orderdate'])->format('d M Y') }} {{ \Carbon\Carbon::parse($order['orderdate'])->format('h:i A') }}
{{ number_format($order['total'] + $order['handlingcharge'], 2) }}
{{ __('Cancel') }}
{{-- Chevron --}}
{{-- Confirm modal --}} {{-- Cancel modal --}} @if(!isset($checkOrderCancel) || !isset($orderlog)) @endif @endforeach
{{-- Quick order detail panel --}}
@else

{{ __("All Caught Up!") }}

{{ __("No pending orders at the moment.") }}

{{ __("View All Orders") }}
@endif
@endsection @section('custom-script') @endsection