@extends('layouts.app') @section('title', $employee->name . ' - Bar & Maquis') @section('content')
| Date | Facture | Client | Montant | Profit | Paiement |
|---|---|---|---|---|---|
| {{ $sale->created_at->format('d/m/Y H:i') }} | {{ $sale->invoice_number }} | {{ $sale->customer_name ?: 'Client anonyme' }} | {{ number_format($sale->total_amount, 0, ',', ' ') }} FCFA | {{ number_format($sale->profit, 0, ',', ' ') }} FCFA | {{ $sale->payment_method }} |
| Date | Produit | Type | Quantité | Raison |
|---|---|---|---|---|
| {{ $movement->created_at->format('d/m/Y H:i') }} | {{ $movement->product->name }} | {{ ucfirst($movement->type) }} | {{ $movement->quantity }} {{ $movement->product->unit }} | {{ $movement->reason ?: '-' }} |