@extends('layouts.pwa') @section('title', 'Buscar contenedor') @section('content')
@forelse($contenedores as $c)
{{ $c->contenedor }} @if($c->estado === 'EN_PATIO') EN PATIO @elseif($c->estado === 'CON_INCIDENCIA') INCIDENCIA @elseif($c->estado === 'SALIO') SALIO @else {{ $c->estado }} @endif
{{ $c->naviera ?: 'Sin naviera' }} Entrada: {{ $c->fecha_entrada ?: '—' }}
@empty @if(!empty($q))
No se encontraron contenedores.
@endif @endforelse Volver @endsection