
| Path : /home/gujo45me/public_html/chaska/resources/views/compra/ |
| Disable Functions : exec,passthru,shell_exec,system System : Linux server-604606.appsiete.com 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 [ Home ][ Zone-h ][ Jumping ][ Symlink ][ Mass Depes ][ Command ] |
| Current File : /home/gujo45me/public_html/chaska/resources/views/compra/listar_anulados.blade.php |
@extends('layout.main')
@section('content')
<div class="sixteen wide tablet sixteen wide computer column ">
<div class="ui segment">
<h4 class="ui dividing header teal centered">COMPRAS ANULADAS</h4>
<table class="ui celled striped table">
<thead>
<tr>
<th class="head_table">N°</th>
<th class="head_table">Almacén</th>
<th class="head_table">Proveedor</th>
<th class="head_table">Fecha de Anulacion</th>
<th class="head_table">Tipo de Compra</th>
<th class="head_table">Inversión S/</th>
<th class="head_table">Acciones</th>
</tr>
</thead>
<tbody>
<?php /**/ $i = $data->firstItem() /**/ ?>
@foreach ($data as $compra)
<tr data-table="{{ $compra->id_compra }}">
<td>{{ $i }}</td>
<td>{{ $compra->local->nombre }}</td>
<td>{{ $compra->proveedor->nombre }}</td>
<td style="color: red">{{ $compra->updated_at}}</td>
<td>{{ $compra->tipo_compra }}</td>
<td>{{ $compra->total_compra }}</td>
<td>
{{-- <div class="ui mini vertical animated positive button button_info_modal" title="Ver informacion detallada" data-id="{{ $compra->id_compra }}">
<div class="hidden content">Detalles</div>
<div class="visible content"><i class="search icon"></i></div>
</div> --}}
<a class="ui mini vertical animated blue button" title="Ver informacion detallada" href="{{ url('compra/detalles/'.$compra->id_compra) }}">
<div class="hidden content">Detalles</div>
<div class="visible content"><i class="search icon"></i></div>
</a>
{{-- <div class="ui mini vertical animated red button button_delete_modal" title="Eliminar registro" data-id="{{ $compra->id_compra }}">
<div class="hidden content">Eliminar</div>
<div class="visible content"><i class="trash alternate icon"></i></div>
</div> --}}
</td>
</tr>
<?php /**/ $i++ /**/ ?>
@endforeach
</tbody>
<tfoot>
<tr>
<th colspan="7">
@include('layout.includes.pagination')
</th>
</tr>
</tfoot>
</table>
</div>
</div>
@stop