@extends('../../layouts/partials/header')
@section('title', 'Stock')
@section('content_header')
Editar Ingreso de Contenedor
@endsection
@section('content')
{{-- 鈿狅笍 MENSAJES DE ESTADO DEL CONTENEDOR --}}
@if ($stock->estado === 'En Patio')
馃摝 Este contenedor est谩 actualmente En Transito.
Puedes modificar datos menores, pero recuerda que ya est谩 en proceso.
@endif
@if ($stock->estado === 'Salida')
馃殮 Este contenedor ya tuvo salida.
No deber铆as modificar datos cr铆ticos como bordero, bill of lading, contenedor.
@endif
@if ($stock->e_edi)
馃摛 Este contenedor ya tiene EDI generado.
Cambiar ciertos campos podr铆a desincronizar la informaci贸n con la naviera.
@endif
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ( $errors->all() as $error )
- {{ $error }}
@endforeach
@endif
@endsection
@extends('../layouts/partials/footer')