@extends('layouts.app') @section('title', $doc->numero) @section('breadcrumb', 'Achat / '.$doc->numero) @section('content')
{{ $doc->type_libelle }} — {{ $doc->date->format('d/m/Y') }}
Le document original sera marqué comme traité.
| # | Désignation | Qté | PU HT | Remise | TVA | Total HT | Total TTC |
|---|---|---|---|---|---|---|---|
| {{ $i+1 }} | {{ $l->designation }}@if($l->produit){{ $l->produit->code_article }} |
{{ number_format($l->qte,3,',',' ') }} | {{ number_format($l->prix_unit_ht,3,',',' ') }} | {{ $l->remise > 0 ? $l->remise.'%' : '-' }} | {{ $l->tva?->taux ?? 0 }}% | {{ number_format($l->total_ht,3,',',' ') }} | {{ number_format($l->total_ttc,3,',',' ') }} |