!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/ecom1.picotech.app/public_html_ecom1/resources/views/vendor/transaction/   drwxr-xr-x
Free 25.3 GB of 117.98 GB (21.44%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     pdf.blade.php (2.74 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('admin.layouts.list_pdf')

@section('pdf-title')
    <title>{{ __(':x List', ['x' => __('Transaction')]) }}</title>
@endsection

@section('header-info')
    <td colspan="2" class="tbody-td">
        <p class="title">
            <span class="title-text"></span><strong>{{ __(':x List', ['x' => __('Transaction')]) }}</strong>
        </p>
        <p class="title">
            <span class="title-text">{{ __('Print Date') }}: </span> {{ formatDate(date('d-m-Y')) }}
        </p>
    </td>
@endsection

@section('list-table')
    <table class="list-table">
        <thead class="list-head">
        <tr>
            <td class="text-center list-th"> {{ __('User') }} </td>
            <td class="text-center list-th"> {{ __('Currency') }} </td>
            <td class="text-center list-th"> {{ __('Method') }} </td>
            <td class="text-center list-th"> {{ __('Amount') }} </td>
            <td class="text-center list-th"> {{ __('Fee') }} </td>
            <td class="text-center list-th"> {{ __('Total') }} </td>
            <td class="text-center list-th"> {{ __('Type') }} </td>
            <td class="text-center list-th"> {{ __('Status') }} </td>
            <td class="text-center list-th"> {{ __('Date') }} </td>
        </tr>
        </thead>
        @foreach ($transactions as $key => $transaction)
            <tr>
                <td class="text-center list-td"> {{ optional($transaction->user)->name }} </td>
                <td class="text-center list-td"> {{ optional($transaction->currency)->name }} </td>
                @if(($transaction->transaction_type == 'Withdrawal'))
                <td class="text-center list-td"> {{ optional($transaction->withdrawalMethod)->method_name }} </td>
                @elseif($transaction->transaction_type == 'Order')
                    <td class="text-center list-td"> {{ optional(optional($transaction->order)->paymentMethod)->gateway }} </td>
                @else
                    <td class="text-center list-td"></td>
                @endif
                <td class="text-center list-td"> {{ formatCurrencyAmount($transaction->amount) }} </td>
                <td class="text-center list-td"> {{ formatCurrencyAmount($transaction->charge_amount + $transaction->commission_amount + $transaction->discount_amount) }} </td>
                <td class="text-center list-td"> {{ formatCurrencyAmount($transaction->total_amount) }} </td>
                <td class="text-center list-td"> {{ $transaction->transaction_type }} </td>
                <td class="text-center list-td"> {{ $transaction->status }} </td>
                <td class="text-center list-td"> {{ formatDate($transaction->transaction_date) }} </td>
            </tr>
        @endforeach
    </table>
@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.0048 ]--