@extends('backend.layout') @section('content')
@if (count($orders) > 0)
@foreach ($orders as $key => $order) {{-- Receipt Modal --}} @endforeach
{{ __('Order ID') }} {{ __('Customer Name') }} {{ __('Discount') }} {{ __('Shipping Charges') }} {{ __('Total') }} {{ __('Gateway') }} {{ __('Payment') }} {{ __('Date') }} {{ __('Receipt') }}
#{{ $order->order_number }} {{ $order->billing_fname }} {{ $order->billing_lname }} {{ $abs->base_currency_symbol_position == 'left' ? $abs->base_currency_symbol : '' }}{{ round($order->discount, 2) }}{{ $abs->base_currency_symbol_position == 'right' ? $abs->base_currency_symbol : '' }} {{ $abs->base_currency_symbol_position == 'left' ? $abs->base_currency_symbol : '' }}{{ round($order->shipping_charge, 2) }}{{ $abs->base_currency_symbol_position == 'right' ? $abs->base_currency_symbol : '' }} {{ $abs->base_currency_symbol_position == 'left' ? $abs->base_currency_symbol : '' }}{{ round($order->total, 2) }}{{ $abs->base_currency_symbol_position == 'right' ? $abs->base_currency_symbol : '' }} {{ ucfirst($order->method) }} @if ($order->payment_status == 'pending') {{ __('Pending') }} @elseif ($order->payment_status == 'completed') {{ __('Completed') }} @endif {{ $order->created_at }} {{ __('View') }}
@endif
@if (!empty($orders)) @endif
@endsection