Nouvelle Vente

Création d'une vente client
@if(count($customers) > 0)
@foreach($customers as $customer) @endforeach
@endif @error('stock_customer_id') {{ $message }} @enderror
@if (session()->has('error'))
{{ session('error') }}
@endif
@foreach($products as $index => $item) @endforeach
Produit * Stock Qté * Prix * Total Note
@if(!empty($products[$index]['results']))
@foreach($products[$index]['results'] as $product) @endforeach
@endif

Total : {{ number_format($totalAmount, 0, ',', ' ') }} FCFA

Retour