@extends('layouts.app') @section('title', 'Détails Fournisseur') @section('breadcrumb')
| Code: | {{ $supplier->code }} |
|---|---|
| Email: | {{ $supplier->email ?? '-' }} |
| Téléphone: | {{ $supplier->phone ?? '-' }} |
| Adresse: | {{ $supplier->address ?? '-' }} |
| Ville: | {{ $supplier->city ?? '-' }} |
| Pays: | {{ $supplier->country ?? '-' }} |
| Numéro fiscal: | {{ $supplier->tax_number ?? '-' }} |
| Statut: | @if($supplier->is_active) Actif @else Inactif @endif |
| Référence | Date | Montant | Statut |
|---|---|---|---|
| {{ $purchase->reference }} | {{ $purchase->purchase_date->format('d/m/Y') }} | {{ number_format($purchase->total_amount, 2) }} FCFA | {{ ucfirst($purchase->status) }} |
Aucun achat enregistré.
@endif{{ $supplier->notes }}