@extends('layouts.app') @section('title', 'Inventario — TI Manager') @section('content')
| Equipo | Serial | Empresa › Sede | Categoría | Estado | Asignado a | Acciones |
|---|---|---|---|---|---|---|
|
{{ $item->name }}
@if($item->brand || $item->model)
{{ $item->brand }} {{ $item->model }}
@endif
|
@if($item->serial_number) {{ $item->serial_number }} @else — @endif |
@if($item->branch)
{{ $item->branch->company->name }}
{{ $item->branch->name }}
@else
—
@endif
|
@if($item->category) {{ $item->category->name }} @else — @endif | {{ $item->status_label }} | {{ $item->assigned_to ?? '—' }} |
@if(request()->anyFilled(['company_id', 'branch_id', 'category_id', 'status', 'search'])) No hay equipos que coincidan con los filtros aplicados. @else Comienza agregando el primer equipo al inventario. @endif