@if( Input::get('fecha_rango') )
| Fecha... |
Devolución No.... |
... |
Vendedor... |
Cliente... |
Justificación... |
Conclusiones... |
... |
| FECHA |
DEVOLUCIÓN No. |
ESTADO |
VENDEDOR |
CLIENTE |
JUSTIFICACIÓN |
CONCLUSIONES |
IMAGEN |
@foreach( $devoluciones as $devolucion )
| {{ $fecha = date( "d/m/Y", strtotime($devolucion->updated_at)); }} |
{{ str_pad($devolucion->id,6,'0',STR_PAD_LEFT) }} |
@if( $devolucion->estado == 1){{ VERIFICADA }}
@elseif( $devolucion->estado == 0 )SIN VERIFICAR
@endif
|
{{ $devolucion->nombre }} |
{{ $devolucion->razon_social }} |
{{ $devolucion->justificacion }} |
{{ $devolucion->conclusiones }} |
|
@endforeach
@endif