@extends('layouts.app') @section('title', 'Détails de la vente - Bar & Maquis') @section('content')
Vente du {{ $sale->created_at->format('d/m/Y à H:i') }}
@if($sale->customer_name)Client: {{ $sale->customer_name }}
@endifVendu par
{{ $sale->employee->name }}
| Produit | Catégorie | Quantité | Prix unitaire | Total |
|---|---|---|---|---|
| {{ $item->product->name }} | {{ $item->product->category->name }} | {{ $item->quantity }} {{ $item->product->unit }} | {{ number_format($item->unit_price, 0, ',', ' ') }} FCFA | {{ number_format($item->total_price, 0, ',', ' ') }} FCFA |
Total HT
{{ number_format($sale->total_amount, 0, ',', ' ') }} FCFA
Profit
{{ number_format($sale->profit, 0, ',', ' ') }} FCFA
Méthode de paiement
{{ $sale->payment_method }}
{{ $sale->notes }}