@extends('layouts.pwa') @section('title', 'Inventario') @section('content')
@forelse($contenedores as $c)
{{ $c->contenedor }} {{ $c->estado }}
{{ $c->naviera ?? 'Sin naviera' }} Entrada: {{ $c->fecha_entrada }}
@empty
No hay contenedores en inventario.
@endforelse
{{ $contenedores->links() }}
Volver @endsection