@extends('layouts.app') @section('title','Comercial — Exportaciones') @section('page-title','Exportaciones') @section('content') @if(session('success'))
{{ session('success') }}
@endif

Exportaciones

Nueva Exportación
@forelse($exportaciones as $exp) @empty @endforelse
ClienteDestinoIncotermB/LZarpeETAEstadoVer
{{ $exp->numero }} {{ $exp->cliente?->nombre_display }} {{ $exp->pais_destino ?? $exp->puerto_destino ?? '—' }} {{ $exp->incoterm }} {{ $exp->numero_bl ?? '—' }} {{ $exp->fecha_zarpe?->format('d/m/Y') ?? '—' }} {{ $exp->fecha_llegada_estimada?->format('d/m/Y') ?? '—' }} {{ \App\Models\Exportacion::$ESTADOS[$exp->estado] }}
Sin exportaciones registradas.
{{ $exportaciones->links() }}
@endsection