@extends('layouts.app') @section('header-title', __('Orders')) @section('content')
@if ($businessModel == 'multi') @endif @forelse ($orders as $order) @if ($businessModel == 'multi') @endif @empty @endforelse
{{ __('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') icon @endhasPermission icon
{{ __('No order found') }}
{{ $orders->links() }}
@endsection