@php use Carbon\Carbon; @endphp @extends('layouts.root') @section('styles') @endsection @section('root-content')
@csrf
@if($orders->count() > 0) @foreach($orders as $item) @endforeach @else @endif
# Code Client Montant Statut Actions
{{ $item->id }} {{ $item->code }} {{ $item->user ? $item->user->name : 'Non défini' }} {{ $item->total }} {{ $item->status }}
Aucune commande trouvée
{{ $orders->links('vendor.pagination.bootstrap-4') }}
@endsection @section('scripts') @endsection