Вход Регистрация
Файл: src/storage/framework/views/cc7302e4105b2d59446d503d3e87509f4007d85a.php
Строк: 211
<?php $__env->startSection('breadcrumb'); ?>
<ul class="breadcrumb">
   <li>
      <a href="<?php echo e(route('get.dashboard')); ?>" title="<?php echo e(trans('breadcrumb.dashboard')); ?>">
      <span class="lnr lnr-home"></span> <?php echo e(trans('breadcrumb.dashboard')); ?>

      </a>
   </li>
   <li>
      <a href="<?php echo e(route('invoices::list')); ?>"><?php echo e(trans('breadcrumb.invoices')); ?></a>
   </li>
   <li>
      <?php echo e($Invoice->ReferenceID); ?>

   </li>
</ul>
<?php $__env->stopSection(); ?>
<?php $__env
->startSection('content'); ?>
<div class="col-sm-12">
   <div class="panel panel-white">
      <div class="panel-heading">
         <h5><?php echo e(trans('invoices.invoice_details')); ?></h5>
         <div class="heading-elements">
            <a href="<?php echo e(route('invoices::edit',$Invoice->InvoiceID)); ?>" class="btn btn-default btn-sm"><i class="glyphicon glyphicon-edit"></i> <?php echo e(trans('invoices.edit_invoice')); ?></a>


            <a href="<?php echo e(route('invoices::download',$Invoice->InvoiceID)); ?>" class="btn btn-default btn-sm"><i class="glyphicon glyphicon-print"></i> <?php echo e(trans('invoices.invoice_download')); ?></a>
         </div>
      </div>
      <div class="panel-body no-padding-bottom">
         <div class="row">
            <div class="col-md-6 content-group">
               <img src="<?php echo e(asset('/uploads/'.$Settings->Logo)); ?>" class="content-group mt-10" alt="" style="width: 120px;">
            </div>
            <div class="col-md-6 content-group text-right">
               <div class="invoice-details">
                  <h5 class="text-uppercase text-semibold"><?php echo e(trans('invoices.label_invoice')); ?> #<?php echo e($Invoice->ReferenceID); ?></h5>
                  <ul class="list-condensed list-unstyled">
                     <li><?php echo e(trans('invoices.label_invoice_date')); ?>: <span class="text-semibold"><?php echo e($Invoice->CreatedAt->format("d/m/Y")); ?></span></li>
                     <li><?php echo e(trans('invoices.label_due_date')); ?>: <span class="text-semibold"><?php echo e($Invoice->DueDate->format("d/m/Y")); ?></span></li>
                  </ul>
               </div>
            </div>
         </div>
         <div class="row">
            <div class="col-md-6
               content-group">
               <span class="text-muted"><?php echo e(trans('invoices.label_our_info')); ?>:</span>
               <ul class="list-condensed list-unstyled">
                  <li>
                     <h5><?php echo e($Invoice->Company->Title); ?></h5>
                  </li>
                  <li><span class="text-semibold"><?php echo e($Invoice->Company->Address1); ?></span></li>
                  <li><?php echo e($Invoice->Company->Address2); ?></li>
                  <li><?php echo e($Invoice->Company->City); ?> <?php echo e($Invoice->Company->ZipCode); ?></li>
                  <li><?php echo e($Invoice->Company->Country->Name); ?></li>
                  <li><?php echo e($Invoice->Company->Phone); ?></li>
                  <li><a href="#"><?php echo e($Invoice->Company->Email); ?></a></li>
               </ul>
            </div>
            <div class="col-md-6 text-right">
               <span class="text-muted"><?php echo e(trans('invoices.label_detail_billing_to')); ?>:</span>
               <ul class="list-condensed list-unstyled">
                  <li>
                     <h5><?php echo e($Settings->Company->Title); ?></h5>
                  </li>
                  <li><span class="text-semibold"><?php echo e($Settings->Company->Address1); ?></span></li>
                  <li><?php echo e($Settings->Company->Address2); ?></li>
                  <li><?php echo e($Settings->Company->City); ?> <?php echo e($Settings->Company->ZipCode); ?></li>
                  <li><?php echo e($Settings->Company->Country->Name); ?></li>
                  <li><?php echo e($Settings->Company->Phone); ?></li>
                  <li><a href="#"><?php echo e($Settings->Email); ?></a></li>
               </ul>
            </div>
         </div>
      </div>
      <div class="table-responsive">
         <table class="table table-lg">
            <thead>
               <tr>
                  <th><?php echo e(trans('invoices.label_description')); ?></th>
                  <th class="col-sm-1"><?php echo e(trans('invoices.label_price')); ?></th>
                  <th class="col-sm-1"><?php echo e(trans('invoices.label_amount')); ?></th>
                  <th class="col-sm-1"><?php echo e(trans('invoices.label_discount')); ?></th>
                  <th class="col-sm-1"><?php echo e(trans('invoices.label_tax')); ?></th>
                  <th class="col-sm-1"><?php echo e(trans('invoices.label_total')); ?></th>
               </tr>
            </thead>
            <tbody>
               <?php foreach($Invoice->Items as $Item): ?>
               <tr>
                  <td>
                     <h6 class="no-margin"><?php echo e($Item->Product->Title); ?></h6>
                     <span class="text-muted"><?php echo e($Item->Product->Description); ?></span>
                  </td>
                  <td><?php echo e($Invoice->Currency->Symbol); ?> <?php echo e($Item->Price); ?></td>
                  <td><?php echo e($Item->Amount); ?></td>
                  <td>
                     <?php echo e($Item->Discount); ?> %
                  </td>
                  <td><?php echo e($Item->Tax); ?> %</td>
                  <td><span class="text-semibold"><?php echo e($Invoice->Currency->Symbol); ?> <?php echo e($Item->Total); ?></span></td>
               </tr>
               <?php endforeach; ?>
            </tbody>
         </table>
      </div>
      <div class="panel-body">
         <div class="row invoice-payment">
            <div class="col-sm-5 col-sm-offset-7">
               <div class="content-group">
                  <h6><?php echo e(trans('invoices.label_total_due')); ?></h6>
                  <div class="table-responsive no-border">
                     <table class="table">
                        <tbody>
                           <tr>
                              <th><?php echo e(trans('invoices.label_subtotal')); ?>:</th>
                              <td class="text-right"><?php echo e($Invoice->Currency->Symbol); ?> <?php echo e($Invoice->SubTotal); ?></td>
                           </tr>
                           <tr>
                              <th><?php echo e(trans('invoices.label_tax')); ?>: <span class="text-regular">(<?php echo e($Invoice->Tax); ?>%)</span></th>
                              <td class="text-right"><?php echo e($Invoice->Currency->Symbol); ?> <?php echo e($Invoice->TaxAmount); ?></td>
                           </tr>
                           <tr>
                              <th><?php echo e(trans('invoices.label_total')); ?>:</th>
                              <td class="text-right text-primary">
                                 <h5 class="text-semibold"><?php echo e($Invoice->Currency->Symbol); ?> <?php echo e($Invoice->Total); ?></h5>
                              </td>
                           </tr>
                        </tbody>
                     </table>
                  </div>
               </div>
            </div>
         </div>
         <h6><?php echo e(trans('invoices.label_other_info')); ?></h6>
         <p class="text-muted"><?php echo e($Invoice->Content); ?></p>
      </div>
   </div>
</div>
<?php $__env->stopSection(); ?>
<?php 
echo $__env->make('layouts.app'array_except(get_defined_vars(), array('__data''__path')))->render(); ?>
Онлайн: 1
Реклама