<?php $__env->startSection('content'); ?>
<div class="page-content row">
    <!-- Page header -->
    <div class="page-header">
      <div class="page-title">
        <h3> <?php echo e($pageTitle); ?> <small><?php echo e($pageNote); ?></small></h3>
      </div>
      <ul class="breadcrumb">
        <li><a href="<?php echo e(URL::to('dashboard')); ?>"><?php echo e(Lang::get('core.home')); ?></a></li>
		<li><a href="<?php echo e(URL::to('expenses?return='.$return)); ?>"><?php echo e($pageTitle); ?></a></li>
        <li class="active"> <?php echo e(Lang::get('core.detail')); ?> </li>
      </ul>
	 </div>  
	 
	 
 	<div class="page-content-wrapper m-t">   

<div class="sbox animated fadeInRight">
	<div class="sbox-title"> 
   		<a href="<?php echo e(URL::to('expenses?return='.$return)); ?>" class="tips btn btn-xs btn-default pull-right" title="<?php echo e(Lang::get('core.btn_back')); ?>"><i class="fa fa-arrow-circle-left"></i>&nbsp;<?php echo e(Lang::get('core.btn_back')); ?></a>
		<?php if($access['is_add'] ==1): ?>
   		<a href="<?php echo e(URL::to('expenses/update/'.$id.'?return='.$return)); ?>" class="tips btn btn-xs btn-primary pull-right" title="<?php echo e(Lang::get('core.btn_edit')); ?>"><i class="fa fa-edit"></i>&nbsp;<?php echo e(Lang::get('core.btn_edit')); ?></a>
		<?php endif; ?> 
	</div>
	<div class="sbox-content" style="background:#fff;"> 	

		<table class="table table-striped table-bordered" >
			<tbody>	
		
					<tr>
						<td width='30%' class='label-view text-right'>Sitename</td>
						<td><?php echo SiteHelpers::gridDisplayView($row->sitename,'sitename','1:tb_site:id:site_name'); ?> </td>
						
					</tr>
				
					<tr>
						<td width='30%' class='label-view text-right'>Description</td>
						<td><?php echo e($row->description); ?> </td>
						
					</tr>
				
					<tr>
						<td width='30%' class='label-view text-right'>Amount</td>
						<td><?php echo e($row->amount); ?> </td>
						
					</tr>
				
					<tr>
						<td width='30%' class='label-view text-right'>Date</td>
						<td><?php echo e($row->date); ?> </td>
						
					</tr>
				
			</tbody>	
		</table>   

	 
	
	</div>
</div>	

	</div>
</div>
	  
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>