@extends('admin.layout') @section('title', 'Historique des commandes client') @section('content')
| ID CLIENT | {{ $client['IDCONTACT'] }} |
|---|---|
| Nom | {{ $client['RAISON_SOCIALE'] ?: $client['NOMFAMILLE'] . ' ' . $client['PRENOM'] }} |
| Type | {{ $c['type'] ?? '—' }} |
|---|---|
| Modèle | {{ $c['modele'] ?? '—' }} |
| Couleur | {{ $c['couleur'] ?? '—' }} |
| Finition | {{ $c['finition'] ?? '—' }} |
| Date fabrication | {{ $c['date_fabrication'] ?? '—' }} |
| Date réception entrepôt | {{ $c['date_reception_entrepot'] ?? '—' }} |
| État | {{ $c['etat'] ?? '—' }} |
Aucune commande trouvée pour ce client.
@endif