@extends('layouts.tabler') @section('content')
@if($orders->isEmpty())

No orders found

Try adjusting your search or filter to find what you're looking for.

@else

{{ __('Orders: Completed') }}

@foreach ($orders as $order) @endforeach
{{ __('No.') }} {{ __('Invoice No.') }} {{ __('Customer') }} {{ __('Date') }} {{ __('Payment') }} {{ __('Total') }} {{ __('Status') }} {{ __('Action') }}
{{ $loop->iteration }} {{ $order->invoice_no }} {{ $order->customer->name }} {{ $order->order_date->format('d-m-Y') }} {{ $order->payment_type }} {{ Number::currency($order->total, 'EUR') }} {{ \App\Enums\OrderStatus::COMPLETE->label() }}
@endif
@endsection