HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/alq-cali.bikenow.co/resources/views/mails/listTicketsCourtesy.blade.php
 <!DOCTYPE html>
 <html>

 <head>
     <title>Email Ticketing</title>
     <style type="text/css">
         body {
             font-family: Arial, sans-serif;
             margin: 0;
             padding: 0;
             background-color: #f6f6f6;
         }

         .container {
             width: 100%;
             max-width: 600px;
             margin: 0 auto;
             background-color: #ffffff;
             padding: 20px;
             border: 1px solid #dddddd;
         }

         .header {
             background-color: #404040;
             color: #ffffff;
             padding: 10px 20px;
             text-align: center;
         }

         .content {
             padding: 20px;
             line-height: 1.3;
         }

         .footer {
             background-color: #f1f1f1;
             color: #333333;
             padding: 10px 20px;
             text-align: center;
             font-size: 12px;
         }

         a {
             text-decoration: none;
         }
     </style>
 </head>

 <body>
     <div class="container">
         <div class="header">
             <h1>{{ $title ?? 'Boletería' }}</h1>
         </div>
         <div class="content">
             <p>Felicitaciones {{ $user_data->first_name ?? 'Usuario' }},</p>
             <p>Descarga tus {{ $total_tickets ?? '0' }} boletas entrando al LINK 👇 @if (isset($enablePin) && $enablePin) e ingresando el siguiente código: <big><b>{{ $key ?? '123' }}</b></big>@endif</p>
             <p>
                 <center>
                     <big><a href="{{ $link ?? 'https://bit.ly/3xyz123' }}">Haz clic sobre este enlace para descargar tu/s boletas.</a></big>
                 </center>
             </p>
             <p>Si el anterior enlace no funciona, copia y pega el siguiente enlace en tu navegador: {{ $shortLink ?? 'https://bit.ly/3xyz123' }}</p>
             <p>
                 <center>
                     <img src="{{ config('filesystems.disks.s3.url') }}/public/logo.png" height="150">
                     <h2>{{ config('app.name') }}</h2>
                 </center>
             </p>
             <p>
                 <center>Gracias por su compra y la confianza depositada en nosotros.</center>
             </p>
             @if(isset($invoice_link) && $invoice_link)
             <p>Si deseas consultar la factura electrónica, por ingresar al siguiente enlace: {{ $invoice_link }}</p>
             @endif
             <hr>
             <p>
                 <small>
                     <b>NOTA: </b>Por favor, no responda directamente a este correo. Este correo fue enviado automáticamente.
                 </small>
             </p>
         </div>
         <div class="footer">
             <p>{{ config('app.name') }} / Sports Crowd &copy; {{ date('Y') }}. Todos los derechos reservados.</p>
         </div>
     </div>
 </body>

 </html>