@extends('layouts.admin') @section('title', 'Editar Inventario') @section('content_header')

Editar Inventario

Ajuste de datos operativos del contenedor
Volver
@stop @section('admin_content')
@if($errors->any()) @endif
@csrf @method('PUT') {{-- RESUMEN --}}
Contenedor:
{{ $contenedor->contenedor }}
{{--
Booking:
{{ $contenedor->booking ?: '—' }}
--}}
Estado:
@if($contenedor->estado === 'EN_PATIO') EN PATIO @elseif($contenedor->estado === 'CON_INCIDENCIA') CON INCIDENCIA @elseif($contenedor->estado === 'SALIO') SALIO @else {{ $contenedor->estado }} @endif
EIR Entrada:
{{ $contenedor->eir_entrada ?: '—' }}
{{-- DATOS GENERALES --}}

Datos Generales

@error('full_empty') {{ $message }} @enderror
@error('full_empty') {{ $message }} @enderror
{{-- COBRANZA --}}

Cobranza

{{-- FORMA DE PAGO --}}
{{-- REFERENCIA --}}
{{-- FECHAS Y OPERACIÓN --}}

Operación

@error('tipo_equipo') {{ $message }} @enderror
@error('tipo_carga') {{ $message }} @enderror
@error('naviera_id') {{ $message }} @enderror
@error('cliente') {{ $message }} @enderror
@error('peso') {{ $message }} @enderror
{{-- TRANSPORTE Y UBICACIÓN --}}

Transporte y Ubicación

@error('transportista_id') {{ $message }} @enderror
@error('operador') {{ $message }} @enderror
@error('unidad') {{ $message }} @enderror
@error('placas') {{ $message }} @enderror
{{--
@error('ubicacion_patio') {{ $message }} @enderror
--}}
{{-- OBSERVACIONES --}}

Observaciones

@error('observaciones') {{ $message }} @enderror
Evidencia Fotográfica

@csrf
@if(session('success')) @endif @if ( $errors->any() )
    @foreach ( $errors->all() as $error )
  • {{ $error }}
  • @endforeach
@endif










Foto 1
@if($contenedor->foto_1) {{-- --}} @else

Imagen no disponible

@endif
Foto 2
@if($contenedor->foto_2) {{-- --}} @else

Imagen no disponible

@endif
Foto 3
@if($contenedor->foto_3) {{-- --}} @else

Imagen no disponible

@endif
Foto 4
@if($contenedor->foto_4) {{-- --}} @else

Imagen no disponible

@endif
Foto 5
@if($contenedor->foto_5) {{-- --}} @else

Imagen no disponible

@endif
Foto 6
@if($contenedor->foto_6) {{-- --}} @else

Imagen no disponible

@endif
Foto 7
@if($contenedor->foto_7) {{-- --}} @else

Imagen no disponible

@endif
Foto 8
@if($contenedor->foto_8) {{-- --}} @else

Imagen no disponible

@endif
Foto 9
@if($contenedor->foto_9) {{-- --}} @else

Imagen no disponible

@endif
Foto 10
@if($contenedor->foto_10) {{-- --}} @else

Imagen no disponible

@endif
Cancelar
@stop