Viewing file: cc29e70c075d5f3622c5d67f23112d1c.php (7.53 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(get_settings('app_name')); ?> - <?php echo e(trans('admin.pricing')); ?> <?php $__env->stopSection(); ?>
<?php $__env->startSection('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> <?php $__env->stopSection(); ?>
<?php $__env->startSection('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="<?php echo e(route('home')); ?>"><?php echo e(trans('admin.home')); ?></a></li> <li class="breadcrumb-item active"><?php echo e(trans('admin.pricing')); ?></li> </ul> </nav> <h1 class="text-center"><?php echo e(trans('admin.pricing')); ?></h1> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('main-section'); ?> <?php $template = json_decode(get_settings('template')); ?> <div class="container"> <div class="row"> <?php if($plans->isNotempty()): ?> <?php $__currentLoopData = $plans; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $plan): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-4 mt-5 wow fadeInUp"> <div class="price-card"> <?php if($plan->set_as_popular=='yes'): ?> <div class="price-card-header"> <?php echo e($plan->title); ?>
<span class="advanced-text">Advanced</span> </div> <?php else: ?> <div class="price-card-header"> <?php echo e($plan->title); ?>
</div> <?php endif; ?> <div class="price-card-body"> <span class="price-title-sec"> <span class="price-value"> <?php echo e(formatNumberWithCurrSymbol($plan->price)); ?></span> <small class="per-sms-cost">$<?php echo e($plan->sms_unit_price); ?> per SMS</small> </span> <div class="items-section"> <div class="single-feature"> <?php echo e(ucfirst(str_replace('_','-',$plan->recurring_type))); ?>
</div> <div class="single-feature"> <?php echo e($plan->short_description); ?>
</div> <div class="single-feature"> <strong><?php echo e(trans('Recurring Type')); ?></strong>: <?php echo e(ucfirst($plan->recurring_type)); ?>
</div> <div class="single-feature"> <?php if($plan->unlimited_contact=='yes'): ?> <p class="text-muted"><strong><?php echo e(trans('Contact Limit')); ?></strong>: <?php echo e(trans('Unlimited')); ?></p> <?php else: ?> <p class="text-muted"><strong><?php echo e(trans('Contact Limit')); ?></strong>: <?php echo e($plan->max_contact); ?></p> <?php endif; ?> <p class="text-muted"><strong><?php echo e(trans('Free SMS Unit')); ?></strong>: <?php echo e($plan->free_sms_credit); ?></p> <p class="text-muted"><strong><?php echo e(trans('SMS Unit Price')); ?></strong>: <?php echo e($plan->sms_unit_price); ?></p> </div> <div class="single-feature"> <?php if($plan->api_availability=='yes'): ?> <p class="text-muted"><strong><?php echo e(trans('API Available')); ?></strong>: Yes</p> <?php else: ?> <p class="text-muted"><strong><?php echo e(trans('API Available')); ?></strong>: No</p> <?php endif; ?> <p class="text-muted"><strong><?php echo e(trans('SMS Send Limit')); ?></strong>: <?php echo e($plan->sms_sending_limit); ?>(<small>Per Month</small>)</p>
<p><?php echo e(trans('customer.unlimited_support')); ?></p> <p><?php echo e(trans('customer.cancel_anytime')); ?></p> <p class="text-muted"> <a href="<?php echo e(route('coverage',[$plan->id])); ?>" target="_blank">See Coverage</a> </p> </div> </div> </div> <div class="price-card-footer"> <?php if(auth('customer')->check()): ?> <?php if(Module::has('PaymentGateway') && Module::find('PaymentGateway')->isEnabled()): ?> <form action="<?php echo e(route('paymentgateway::process')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="id" value="<?php echo e($plan->id); ?>"> <button type="submit" class="main-banner-btn"><?php echo e(trans('Subscribe')); ?>
</button> </form> <?php endif; ?> <?php elseif(get_settings('registration_status')=='enable'): ?> <a href="<?php echo e(route('signup',['plan'=>$plan->id])); ?>" class="main-banner-btn"><?php echo e(trans('Subscribe')); ?></a> <?php endif; ?> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?>
</div> </div> <!-- .page-section --> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.frontLayout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/sms.picotech.app/public_html/resources/views/front/pricing.blade.php ENDPATH**/ ?>
|