@extends('admin.layouts.app') @section('content')
{{-- Filters --}}
@if (request()->hasAny(['search', 'status'])) Reinitialiser @endif
@forelse ($orders as $order) @empty @endforelse
Commande Client Statut Total Date Actions
{{ $order->number }}
{{ $order->billing_first_name }} {{ $order->billing_last_name }}
{{ $order->billing_email }}
{{ number_format($order->total, 2, ',', ' ') }} € {{ $order->created_at->format('d/m/Y H:i') }}
Aucune commande.
@if ($orders->hasPages())
{{ $orders->links() }}
@endif
@endsection