@extends('layouts.app') @section('title','Comercial — Dashboard') @section('page-title','Comercio Interior / Exterior') @section('content')
Sin registro
@endifVentas del mes
| N° | Cliente | Total | Estado |
|---|---|---|---|
| {{ $cot->numero }} | {{ $cot->cliente?->nombre_display }} | {{ $cot->moneda }} {{ number_format($cot->total,2) }} | {{ \App\Models\CotizacionComercial::$ESTADOS[$cot->estado] }} |
| Sin cotizaciones | |||
| N° | Cliente | Total | Estado |
|---|---|---|---|
| {{ $ped->numero }} | {{ $ped->cliente?->nombre_display }} | {{ $ped->moneda }} {{ number_format($ped->total,2) }} | {{ \App\Models\PedidoComercial::$ESTADOS[$ped->estado] }} |
| Sin pedidos activos | |||
| N° | Cliente | Destino | B/L | Zarpe | ETA | Estado |
|---|---|---|---|---|---|---|
| {{ $exp->numero }} | {{ $exp->cliente?->nombre_display }} | {{ $exp->pais_destino ?? $exp->puerto_destino ?? '—' }} | {{ $exp->numero_bl ?? '—' }} |
{{ $exp->fecha_zarpe?->format('d/m/Y') ?? '—' }} | {{ $exp->fecha_llegada_estimada?->format('d/m/Y') ?? '—' }} | {{ \App\Models\Exportacion::$ESTADOS[$exp->estado] }} |