FACTURES
Liste des Factures
@if($Factures->count() == 0)
Aucune Facture disponible
@else
Liste des Factures
@endif
| # |
Client |
Auteur |
THTVA |
TTVAC |
Enregistré le: |
Action |
@foreach($Factures as $Facture)
@if($Facture->EtatFacture == 2)
| {{ $Facture->id }} |
{{ $Facture->Client }} |
{{ $Facture->Auteur }} |
{{ $Facture->Mhtva }} |
{{ $Facture->Mtvac }} |
{{ $Facture->DateCreation->format('d/m/Y') }} |
|
@elseif($Facture->EtatFacture == 1)
| {{ $Facture->id }} |
{{ $Facture->Client }} |
{{ $Facture->Auteur }} |
{{ $Facture->Mhtva }} |
{{ $Facture->Mtvac }} |
{{ $Facture->DateCreation->format('d/m/Y') }} |
|
@endif
@endforeach