<div class="row">
	<div class="col-xs-11">
        <section class="panel" style="font-size: 160%;">
	        <header class="panel-heading">
	          <?php /* <span class="label bg-danger pull-right">4 left</span> */ ?>
	          <?php echo app('translator')->get('messages.lost_found'); ?>
	        </header>
	        <table class="table table-striped">
	          <thead>
	            <tr>
	            	<th><?php echo app('translator')->get('messages.type'); ?></th>
		            <th><?php echo app('translator')->get('messages.found_lost_time'); ?></th>
		            <th><?php echo app('translator')->get('messages.location'); ?></th>
		            <th><?php echo app('translator')->get('messages.object_name'); ?></th>
		            <th><?php echo app('translator')->get('messages.status'); ?></th>                    
	            </tr>
	          </thead>
	          <tbody>
	          	<?php foreach($losts as $one): ?>
		          	<tr>
		          		<td>
		          			<?php if($one->type == '0'): ?>
							<span class="label label-sm label-primary"> <?php echo app('translator')->get('messages.lost'); ?> </span>
							<?php elseif($one->type == '1'): ?>
							<span class="label label-sm label-info"> <?php echo app('translator')->get('messages.found'); ?> </span>
							<?php endif; ?>
		          		</td>
		          		<td><?php echo e($one->time_find); ?></td>
		          		<td><?php echo e($one->location); ?></td>
		          		<td><?php echo e($one->name); ?></td>
		          		<td>
							<?php if($one->status == '0'): ?>
							<span class="label label-sm label-warning"> <?php echo app('translator')->get('messages.not_claim'); ?> </span>
							<?php elseif($one->status == '1'): ?>
							<span class="label label-sm label-success"> <?php echo app('translator')->get('messages.claimed'); ?> </span>
							<?php endif; ?>
						</td>
		            </tr>
	          	<?php endforeach; ?>
	          </tbody>
	        </table>
	        <?php if($losts->count() == 0): ?>
			<div class="alert alert-info" style="margin: 30px;text-align: center;">
				<button type="button" class="close" data-dismiss="alert"><i class="fa fa-times"></i></button>
				<?php echo app('translator')->get('messages.sor_no_lostthing'); ?>
			</div>
	        <?php endif; ?>
	      </section>
    </div>

    <div class="col-xs-1">
    	<div class="row">
    		<div class="col-xs-12">
    			<div class="btn-group-vertical m-b-sm">
    				<button type="button" class="btn btn-white btn_home"><i class="fa fa-mail-reply fa-3x"></i></button>
    			</div>
    		</div>
    		<div class="col-xs-12">
    			<div class="btn-group-vertical m-b-sm">
		    		<?php if($losts->currentPage() != 1): ?>
		    		<button type="button" class="btn btn-white btn_link" data-link="<?php echo e($type); ?>" data-page="<?php echo e($losts->currentPage()-1); ?>"><i class="fa fa-chevron-circle-up fa-3x"></i></button>
		    		<?php endif; ?>

		    		<?php if($losts->hasMorePages() ): ?>
			        <button type="button" class="btn btn-white btn_link" data-link="<?php echo e($type); ?>" data-page="<?php echo e($losts->currentPage()+1); ?>"><i class="fa fa-chevron-circle-down fa-3x"></i></button>
			        <?php endif; ?>
			    </div>
    		</div>
    		
    	</div>
    	
    </div>
</div>