@extends('layouts.app') @section('title', 'No Conformidades') @section('content')

No Conformidades

@if(session('success'))
{{ session('success') }}
@endif {{-- Filtros --}}

Registros ({{ $ncs->total() }})

@forelse($ncs as $nc) @empty @endforelse
Código Origen Tipo Descripción Responsable F. Límite Estado Acciones
{{ $nc->codigo }} {{ strtoupper(str_replace('_',' ',$nc->origen)) }} {{ $nc->tipo === 'nc_interna' ? 'Interna' : 'Externa' }} {{ Str::limit($nc->descripcion, 50) }} {{ $nc->responsable->name }} {{ $nc->fecha_limite?->format('d/m/Y') ?? '—' }} {{ strtoupper(str_replace('_',' ',$nc->estado)) }} @if(!$nc->cerrada) @endif
Sin registros.
@if($ncs->hasPages())@endif
@endsection