@if( Input::get('fecha_rango') )
| FECHA |
SOLICITUD N° |
TIPO |
NIT |
RAZON SOCIAL |
CREADO POR |
VER |
|
|
|
|
|
|
|
@foreach( $rows as $row )
|
{{
$fecha = date( "d-m-Y", strtotime($row->created_at))
}}
|
{{ $row->id }} -
@if( $row->estado == 1 ){{ APROBADA }}
@elseif($row->estado == 0 ){{ NUEVA }}
@elseif($row->estado == 2 ){{ RECHAZADA }}
@endif
|
@if( $row->tipo == 1 )
{{ strtoupper("GENERAL") }}
@else
{{ (strtoupper("EXPRESS")) }}
@endif
|
{{ $row->nit }} |
{{ strtoupper($row->razon_social) }} |
{{ strtoupper($row->user_creo) }} |
@if( $row->tipo == 1 )
@else
@endif
|
@endforeach