{{-- HEADER --}}

FACTURE D'ACHAT

N° : {{ $achat->reference }}
Date : {{ \Carbon\Carbon::parse($achat->date)->format('d/m/Y') }}

{{-- FOURNISSEUR --}}

Fournisseur :
{{ $achat->supplier->company }}
{{ $achat->supplier->contact }}
{{ $achat->supplier->address }}

{{-- TABLE --}} @foreach ($details as $key => $item) @endforeach
# Article Qté Prix Achat Total
{{ $key + 1 }} {{ $item->article->name }} {{ $item->quantity }} {{ money($item->price) }} {{ money($item->quantity * $item->price) }}
TOTAL {{ money($amount_achat->amount_items) }}
{{-- FOOTER --}}