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.22
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 /
traslado /
[ HOME SHELL ]
Name
Size
Permission
Action
detalles.blade.php
5.07
KB
-rw-r--r--
listar.blade.php
2.17
KB
-rw-r--r--
nuevo.blade.php
8.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 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">REGISTRO DE TRASLADO DE PRODUCTOS</h4> <table class="ui celled striped table"> <thead> <tr> <th class="head_table">N°</th> <th class="head_table">Local de Origen</th> <th class="head_table">Local de Destino</th> <th class="head_table">Motivo de Traslado</th> <th class="head_table">Fecha de Traslado</th> <th class="head_table">Acciones</th> </tr> </thead> <tbody> <?php /**/ $i = $data->firstItem() /**/ ?> @foreach ($data as $row) <tr data-table="{{ $row->id_traslado }}"> <td>{{ $i }}</td> <td>{{ $row->local_origen->nombre }}</td> <td>{{ $row->local_destino->nombre }}</td> <td>{{ $row->descripcion }}</td> <td>{{ $row->created_at}}</td> <td> <a class="ui mini vertical animated blue button" title="Ver informacion detallada" href="{{ url('traslado/detalles/'.$row->id_traslado) }}"> <div class="hidden content">Detalles</div> <div class="visible content"><i class="search icon"></i></div> </a> </td> </tr> <?php /**/ $i++ /**/ ?> @endforeach </tbody> <tfoot> <tr> <th colspan="6"> @include('layout.includes.pagination') </th> </tr> </tfoot> </table> </div> </div> @stop
Close