@extends('layouts.admin') @section('title', 'Commandes') @section('content')

Commandes

{{ $orders->total() }} commande(s)

{{-- Filters --}}
@forelse($orders as $order) @empty @endforelse
Commande Total Statut Action

{{ $order->order_number }}

{{ number_format($order->total_amount, 2) }} FCFA {{ $order->status_label }}

Aucune commande.

@if($orders->hasPages())
{{ $orders->links() }}
@endif
@endsection