@extends('layouts.app') @section('content')
{{ __('PRESTAMO SALIDA') }}
@if($inventarioprestamosalida->condicion == 'CON DEVOLUCIÓN')
@if($inventarioprestamosalida->usuario_devol_confirm) @else @endif
@endif
@if (count($inventarioprestamosalida->productos) > 0) @foreach ($inventarioprestamosalida->productos as $producto) @endforeach
{{ __('PRODUCTO DEL REQUERIMIENTO') }} {{ __('CANTIDAD') }} {{ __('FECHA DE CREACIÓN') }}
{{ $producto->nombre_producto }} {{ $producto->pivot->cantidad }} {{ $producto->pivot->created_at }}
@endif
@endsection