Modifier une Vente

{{-- INFO --}}
@error('date') * @enderror
@error('magasin_id') * @enderror
@error('status') * @enderror
{{-- CLIENT --}}
@if(!empty($clients))
@foreach($clients as $client) @endforeach
@endif
{{-- TABLE PRODUITS --}}
@foreach($items as $index => $item) @endforeach
Produit Prix Quantité Total
@if(!empty($items[$index]['results']))
@foreach($items[$index]['results'] as $affectation) @endforeach
@endif
{{ number_format(intVal($item['price']) * intVal($item['quantity']), 0, ',', ' ') }} GNF
{{-- TOTAL --}}

Total Général : {{ number_format($this->grandTotal, 0, ',', ' ') }} GNF

{{-- SAVE --}}
Retour