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


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

@section('title') Billings @endsection

@section('content')
    <!-- Content Header (Page header) -->
    <div class="content-header custom-content-header">
        <h5>{{trans('customer.billing')}}</h5>
        <p class="m-0 section-heading-text">
            <i class="fa fa-university mr-1 op-07"></i>
            <span class="panel-name op-07">
                 {{trans('customer.customer_panel')}}
            </span>
            <i class="fa fa-angle-double-right ml-1 mr-1" aria-hidden="true"></i>
            <span class="header-active">{{trans('customer.billing')}}</span>
        </p>
    </div>
    <!-- /.content-header -->



    <!-- Main content -->
    <div class="content">
        <div class="container-fluid">
            <div class="row">
                <!-- /.col-md-6 -->
                <div class="col-lg-12 mx-auto">
                    <div class="card">
                        <div class="card-header">
                            <h5 class="m-0">{{trans('customer.billing')}}</h5>
                        </div>
                        <div class="card-body">

                            <table class="w-100">
                                <tr>
                                    <td>
                                        <div class="card-title float-none">{{trans('customer.your_plan')}}</div>
                                        <h2>{{isset($customer_plan->plan->title)?$customer_plan->plan->title:''}}</h2></td>
                                    <td class="text-right">
                                        <button type="button"
                                                class="btn btn-primary d-none">{{trans('customer.update_plan')}}</button>
                                    </td>
                                </tr>
                            </table>

                            <table class="w-50">
                                <tr>
                                    <td class="plan-des-title">{{trans('customer.available_word')}} :</td>
                                    <td class="plan-des-value">
                                        @if(auth('customer')->user()->current_plan->is_word_limit == 'yes')
                                            <span class="text-primary">{{trans('customer.unlimited_word_limit')}}</span>
                                        @else
                                            <span class="text-primary">{{auth()->user()->current_plan->word_limit}}/{{auth('customer')->user()->current_plan->available_word}}</span>
                                        @endif
                                    </td>
                                </tr>
                                <tr>
                                    <td class="plan-des-title">
                                        {{trans('customer.available_image')}} :
                                    </td>

                                    <td class="plan-des-value">
                                        @if(auth('customer')->user()->current_plan->is_image_limit == 'yes')
                                            <span class="text-primary">{{trans('customer.unlimited_image_limit')}}</span>
                                        @else
                                            <span class="text-primary">{{auth()->user()->current_plan->image_limit}}/{{auth()->user()->current_plan->available_image}}</span>
                                        @endif
                                    </td>
                                </tr>
                                <tr>
                                    <td class="plan-des-title">
                                        {{trans('customer.available_code')}} :
                                    </td>

                                    <td class="plan-des-value">
                                        @if(auth('customer')->user()->current_plan->is_code_limit == 'yes')
                                            <span class="text-primary">{{trans('customer.unlimited_code_limit')}}</span>
                                        @else
                                            <span class="text-primary">{{auth('customer')->user()->current_plan->code_limit}}/{{auth('customer')->user()->current_plan->available_code}}</span>
                                        @endif
                                    </td>
                                </tr>
                                <tr>
                                    <td class="plan-des-title">{{trans('customer.cost')}}</td>
                                    <td class="plan-des-value">${{isset($customer_plan->price)?$customer_plan->price:0}}</td>
                                </tr>
                            </table>

                            <div id="plans" class="plans-wrapper mt-3">
                                @foreach($plans as $plan)

                                    <div
                                        class="columns {{isset($customer_plan->plan_id)&&isset($plan->id)&&($customer_plan->plan_id==$plan->id)?'plan-active':''}}">
                                        <ul class="price">
                                            <li class="grey">{{$plan->title}} <span
                                                    class="plan-title-current">{{isset($customer_plan->plan_id)&&isset($plan->id)&&($customer_plan->plan_id==$plan->id)?'(Current)':''}}</span>
                                            </li>
                                            <li class="price-tag">{{formatNumberWithCurrSymbol($plan->price)}}</li>
                                            @if($plan->is_word_limit=='yes')
                                                <li>{{trans('admin.word_limit')}}: {{trans('customer.unlimited')}}</li>
                                            @else
                                                <li>{{trans('admin.word_limit')}}: {{$plan->word_limit}}</li>
                                            @endif

                                            @if($plan->is_image_limit=='yes')
                                                <li>{{trans('admin.image_limit')}}:  {{trans('customer.unlimited')}}</li>
                                            @else
                                                <li>{{trans('admin.image_limit')}}:  {{$plan->image_limit}}</li>
                                            @endif

                                            @if($plan->is_code_limit=='yes')
                                                <li>{{trans('admin.code_limit')}}:  {{trans('customer.unlimited')}}</li>
                                            @else
                                                <li>{{trans('admin.code_limit')}}:  {{$plan->code_limit}}</li>
                                            @endif

                                            <li>{{trans('customer.recurring_type')}}:  {{ucwords($plan->recurring_type)}}</li>
                                            <li>{{trans('customer.unlimited_support')}}</li>
                                            <li>{{trans('customer.cancel_anytime')}}</li>
                                            <li>
                                                @if(isset($customer_plan->plan_id)&&($customer_plan->plan_id!=$plan->id))
                                                    @if(Module::has('PaymentGateway') && Module::find('PaymentGateway')->isEnabled())
                                                        <button
                                                            data-message="{!! trans('customer.messages.update_plan',['plan'=>$plan->title]) !!} <br/> <span class='text-sm text-muted'>{{trans('customer.messages.update_plan_nb')}}</span>"
                                                            data-action="{{route('paymentgateway::process')}}"
                                                            data-input='{"id":"{{$plan->id}}"}'
                                                            data-toggle="modal" data-target="#modal-confirm"
                                                            type="button"
                                                            class="btn btn-primary btn-sm">{{trans('customer.choose')}}
                                                        </button>
                                                    @endif
                                                @endif
                                            </li>

                                        </ul>
                                    </div>
                                @endforeach
                            </div>

                        </div>
                    </div>
                </div>
                <!-- /.col-md-6 -->
            </div>
            <!-- /.row -->
        </div><!-- /.container-fluid -->
    </div>
    <!-- /.content -->
@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.0045 ]--