@extends('layouts.app') @section('content')
{{ __('Orders') }}
@if ($businessModel == 'multi') @endif @foreach ($orders as $order) @if ($businessModel == 'multi') @endif @endforeach
{{ __('Order ID') }} {{ __('Order Date') }} {{ __('Customer') }}{{__('Shop') }}{{__('Total Amount') }} {{__('Payment Method') }} {{__('Action') }}
{{ $order->prefix . $order->order_code }} {{ $order->created_at->format('d M Y, h:i A') }} {{ $order->customer?->user?->name }} {{ $order->shop?->name }} {{ showCurrency($order->payable_amount) }}
{{ $order->payment_status }}
{{ $order->payment_method }} @hasPermission('admin.order.show') @endhasPermission
{{ $orders->links() }}
@endsection