<?php $__env->startSection('content'); ?>
<div class="content" id="content">

  <div class="overlay"></div>     
  
<?php echo $__env->make('admin.includes.topbar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
  
  <!-- main content -->
  <div class="main-content">





    <!-- panel -->

    <div class="panel panel-piluku">
      <div class="panel-heading">
        <h3 class="panel-title">
          Add Item
          <span class="panel-options">
            <a href="#" class="panel-refresh">
              <i class="icon ti-reload"></i>
            </a>
            <a href="#" class="panel-minimize">
              <i class="icon ti-angle-up"></i>
            </a>
            <a href="#" class="panel-close">
              <i class="icon ti-close"></i>
            </a>
          </span>
        </h3>
      </div>
<?php if(Session::has('error')): ?>
<div class="alert bg-danger text-white">
              <?php echo Session::get('success'); ?>

            </div>

<?php endif; ?>

<?php if(Session::has('success')): ?>
<div class="alert bg-success text-white">
              <?php echo Session::get('success'); ?>

            </div>

<?php endif; ?>




      <div class="panel-body">

          <?php echo Form::open(array('route' => 'insertpaymentvoucheritem', 'id' => 'form-a', 'class' => 'form form-horizontal')); ?>

          <input type="text" class="form-control" style="display: none"  hidden value="<?php echo $payment_voucher->id; ?>"  name="payment_vouchers_id" >

          <div class="form-group">
            					<label class="col-sm-2 control-label">Details:</label>
					                <div class="col-sm-8">
					                  
					                  <input type="text" class="form-control" required name="description" >
					                </div>
        </div>


        <div class="form-group">
            					<label class="col-sm-2 control-label">Amount</label>
					                <div class="col-sm-8">
					                  
					                  <input type="text" id="amount" class="form-control" required name="amount" >

					                </div>
        </div>

       

          
      <div class="form-group">
        <div class="col-sm-offset-2 col-sm-8">
          <input type="submit" class="btn btn-success">
          <input type="reset" class="btn btn-danger">
        </div>
      </div>
    </form>
  </div>
</div>
<!-- /panel -->



<!-- panel -->
        <div class="panel panel-piluku panel-users">
          <div class="panel-heading">
            <h3 class="panel-title">
              List of Payment Voucher Items
              <span class="panel-options">
                <a href="#" class="panel-refresh">
                  <i class="icon ti-reload"></i> 
                </a>
                <a href="#" class="panel-minimize">
                  <i class="icon ti-angle-up"></i> 
                </a>
                <a href="#" class="panel-close">
                  <i class="icon ti-close"></i> 
                </a>
              </span>
            </h3>
          </div>
          <div class="panel-body nopadding">
            <div class="table-responsive">
              <table class="table table-hover" style="font-size: 10px;">
								<thead>
									<tr>
                    <th>#</th>
										<th>Details</th>
										<th>Amount</th>
						        <th>By:</th>
						        <th>Created Date</th>
										<th>&nbsp;</th>
									
									</tr>
								</thead>
								<tbody>
                <?php 
                $count = count($payment_vouchers_items) + 1;
                ?>
								     <?php foreach($payment_vouchers_items as $item): ?>
                      <?php 
                     $count = $count - 1;
                     ?>

									<tr class="table-row">
                    <td><?php echo $count; ?></td>
										<td><?php echo $item->description; ?></td>
										<td><?php echo $item->amount; ?></td>
								
						        <td><?php echo AppHelper::getUser($item->user_id); ?></td>
						        <td><?php echo $item->created_at; ?></td>
					
						                

										<td>
<?php if(Entrust::can('payment_vouchers_delete')): ?>

										<a href="<?php echo URL('admin/payments-vouchers/items/delete'); ?>/<?php echo $item->id; ?>" class="btn btn-red"><i class="ion ion-ios-trash-outline"></i></a>
<?php endif; ?>
								
										</td>
											
									</tr>
									<?php endforeach; ?>
									
								</tbody>
							</table>
            </div>
          </div>
        </div>
        <!-- /panel -->



</div>
<!-- /main content -->        
<?php $__env->stopSection(); ?>


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