@extends('admin.layout') @section('content')
{{ __('ID') }} | {{ __('ORIGEN') }} | {{ __('FECHA Y HORA DE CREACIÓN') }} | {{ __('CONDICIÓN') }} | {{ __('PRODUCTO') }} | {{ __('DOCUMENTO RESPONSABLE') }} | {{ __('NOMBRE RESPONSABLE') }} | {{ __('Acción') }} |
---|---|---|---|---|---|---|---|
{{ $prestamoingreso->id }} | {{ $prestamoingreso->origen }} | {{ $prestamoingreso->created_at->format('d/m/Y - H:i:s') }} | {{ $prestamoingreso->condicion }} | @if(count($prestamoingreso->productos) > 0) {{ $prestamoingreso->productos[0]->nombre_producto }} @endif | {{ $prestamoingreso->documento_responsable }} | {{ $prestamoingreso->nombre_responsable }} |
@if ($prestamoingreso->estado !== 'ANULADO')
{{ __('VER') }}
@if ($prestamoingreso->condicion == 'CON DEVOLUCIÓN' && $prestamoingreso->estado != 'PRESTAMO DEVUELTO' && $prestamoingreso->estado != 'ANULADO')
{{ __('CONFIRMAR DEVOLUCIÓN') }}
@endif
@endif
@if ($prestamoingreso->estado !== 'ANULADO' && $prestamoingreso->estado == 'PRESTAMO PENDIENTE DE DEVOLUCIÓN')
@endif
@if ($prestamoingreso->estado == 'ANULADO')
ANULADO @endif |
{{ __('No hay datos disponibles') }} |