Current File : /home/itiffy/public_html/storage/framework/views/e078d97bafb00cb6a66ae1f723ea82acffa230a8.php
<?php $__env->startSection('content'); ?>
 <!-- BANNER SECTION -->
  <div class="inner-banner-section">
    <h1>Paypal Payment <?php if($payment_status==1): ?> <?php echo e('Success'); ?><?php else: ?> <?php echo e('Failed'); ?> <?php endif; ?></h1>
    
    <div class="icon-logo"><img src="<?php echo e(url('public/images')); ?>/icon-logo.png" alt=""></div>
  </div>
  <!-- /BANNER SECTION -->
  <div class="breadcrumb-box">
    <ol class="breadcrumb container">
      <li class="breadcrumb-item"><a href="<?php echo e(route('home')); ?>"><i class="fa fa-home" aria-hidden="true"></i></a></li>
      <li class="breadcrumb-item active">Paypal Payment <?php if($payment_status==1): ?> <?php echo e('Success'); ?><?php else: ?> <?php echo e('Failed'); ?> <?php endif; ?></li>
    </ol>
  </div>
  <!-- /BREADCRUMB SECTION --> 
  <!-- CONTENT SECTION -->
  <div class="content-section" id="payment_success"> 
    
    <div class="row">
       <div class="col-sm-3"></div>
     <?php if($payment_status==1): ?>
        <div class="col-sm-6 col-md-6">
            <div class="alert alert-success">
                <!-- <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
                    ×</button> -->
               <span class="glyphicon glyphicon-ok"></span> <strong>Success Message</strong>
                <hr class="message-inner-separator">
                <p>
                    Your payment has been completed successfully.</p>
            </div>
        </div>
    <?php else: ?>

            <div class="col-sm-6 col-md-6">
            <div class="alert alert-danger">
                <span class="glyphicon glyphicon-hand-right"></span> <strong>Failed Message</strong>
                <hr class="message-inner-separator">
                <p>
                    Your payment has been failed.Please try again.</p>
            </div>
        </div>
    <?php endif; ?>
         
     </div>   
  </div>
  <!-- /CONTENT SECTION --> 
<?php $__env->stopSection(); ?>

<?php echo $__env->make('frontend.layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>