@extends('layouts.master') @section('title', 'Details achat') @section('parentPageTitle', 'details') @section('page-style') @stop @section('content')
| # | Date de commande | Libellé article | Quantité demandée | Prix unitaire | Montant Total |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ \Carbon\Carbon::parse($dem->date_bon_commande)->format('d/m/Y') }} | {{ $dem->nom_article }} | {{ $dem->qte_demande }} | {{ number_format($dem->pu_demande, 0, ',', ' ') }} | {{ number_format($dem->qte_demande * $dem->pu_demande, 0, ',', ' ') }} |
| Aucun article trouvé pour ce bon de commande. | |||||
| TOTAL HTVA | {{ number_format($totalHTVA, 0, ',', ' ') }} | ||||
| TVA (18%) | {{ number_format($TVA, 0, ',', ' ') }} | ||||
| TOTAL TVAC | {{ number_format($totalTVAC, 0, ',', ' ') }} | ||||
| TOTAL HTVAC | {{ number_format($totalHTVA, 0, ',', ' ') }} | ||||