@extends('layouts.app') @section('title','Cliente: '.$cliente->razon_social) @section('page-title','Detalle de Cliente') @section('content') @if(session('success'))
{{ $cliente->ruc ?? $cliente->tax_id ?? '—' }}| N° | Total | Estado | Fecha |
|---|---|---|---|
| {{ $cot->numero }} | {{ $cot->moneda }} {{ number_format($cot->total,2) }} | {{ \App\Models\CotizacionComercial::$ESTADOS[$cot->estado] }} | {{ $cot->created_at->format('d/m/Y') }} |
| Sin cotizaciones | |||
| N° | Total | Estado | Fecha |
|---|---|---|---|
| {{ $ped->numero }} | {{ $ped->moneda }} {{ number_format($ped->total,2) }} | {{ \App\Models\PedidoComercial::$ESTADOS[$ped->estado] }} | {{ $ped->created_at->format('d/m/Y') }} |
| Sin pedidos | |||