@extends('layouts.app') @section('addhead') @endsection @section('content') @if(Auth::user()->roles_id == 2 )
@foreach($factures as $factnom) {{$factnom->nom_prenom}} @endforeach
| Libellé | Quantité | Prix Unitaire | Montant |
|---|---|---|---|
| {{$f->libelle}} | {{$f->qte}} | {{number_format($f->prix, 0, ',', ' ')}} | {{number_format($f->total, 0, ',', ' ')}} |
| Montant Total | {{number_format($f->montant, 0, ',', ' ')}} |
|---|