| Path : /var/www/html/backup/jewelry-pos/storage/framework/views/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //var/www/html/backup/jewelry-pos/storage/framework/views/2ce35b48c0c6bf972be0e43b1ae25012.php |
<?php $__env->startSection('content'); ?>
<div class="col-lg-12">
<div class="card-body shadow-1">
<div class="row mt-2 mr-1">
<form method="GET" action="<?php echo e(route('grn-list')); ?>?q=<?php echo e($q); ?>&paginate=<?php echo e($paginate); ?>" class="" id="search-form" onsubmit="" style="display: flex;justify-content: start;align-items: center;width: 100%;">
<div class="col-md-4 col-xs-12 col-sm-4 col-xl-3 mb-4">
<div class="input-group">
<input type="text" class="form-control rounded-0"
placeholder="<?php echo e(__('message.select')); ?>" id="datepicker" name="date" readonly>
<div class="input-group-append">
<span class="input-group-text fs-xl">
<i class="fal fa-calendar text-info "></i>
</span>
</div>
</div>
</div>
<div class="col-xs-12 col-md-8 col-sm-8 col-xl-9 margin-tb mb-4" style="display: flex;justify-content: start;align-items: center">
<div class="input-group mr-2" style="width: 40%;">
<input type="text" class="form-control rounded-0"
placeholder="<?php echo e(__('message.search')); ?> ..." value="<?php echo e($q); ?>" name="q" id="search">
<div class="input-group-append">
<button type="submit" class="input-group-text fs-xl">
<i class="fal fa-search text-success"></i>
</button>
</div>
</div>
<input type="hidden" name="paginate" value="<?php echo e($paginate); ?>">
<div style="width: 20%;">
<button type="submit" class="btn btn-outline-success mr-2" style="width: 80%;">
<i class="fal fa-search text-outline-success"></i>
<span class="hidden-xs"> <?php echo e(__('message.search')); ?></span>
</button>
</div>
<a href="<?php echo e(route('grn-print')); ?>?start_date=<?php echo e($start_date); ?>&end_date=<?php echo e($end_date); ?>&paginate=<?php echo e($paginate); ?>&q=<?php echo e($q); ?>"
class="btn btn-success bg-success-800 float-right rounded-0"
title="<?php echo e(__('message.print')); ?>" name="" style="width: 20%;margin-right: 20px">
<i class="fal fa-print"></i>
<?php echo e(__('message.print summary')); ?>
</a>
<a href="<?php echo e(route('grn-print-detail')); ?>?start_date=<?php echo e($start_date); ?>&end_date=<?php echo e($end_date); ?>&paginate=<?php echo e($paginate); ?>&q=<?php echo e($q); ?>"
class="btn btn-info bg-info-800 float-right rounded-0"
title="<?php echo e(__('message.print')); ?>" name="" style="width: 15%;">
<i class="fal fa-print"></i>
<?php echo e(__('message.print')); ?>
</a>
</div>
</form>
</div>
<div class="panel-container show">
<div class="d-flex flex-column h-100">
<div class="h-auto">
<table id="example" class="table table-striped w-100">
<thead class="bg-fusion-400 text-center">
<tr>
<th>#</th>
<th><?php echo e(__('message.grn')); ?></th>
<th><?php echo e(__('message.date')); ?></th>
</tr>
</thead>
<tbody class="text-center">
<?php $__currentLoopData = $productQtyHistories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $productQtyHistory): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr class="text-center border-bottom">
<td>
<?php echo e($index+1); ?>
</td>
<td>
<a href="<?php echo e(route('grn-product-list' , $productQtyHistory->grn)); ?>">
<?php echo e($productQtyHistory->grn); ?>
</a>
</td>
<td>
<?php echo e($productQtyHistory->created_at->format('d-m-Y H:i')); ?>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
<?php if($productQtyHistories->hasPages()): ?>
<div class="d-flex m-2 p-2" style="justify-content: space-between;align-items: start;width: 20%">
<select id="paginate" class="form-select text-center rounded mr-2 mt-1" aria-label="Default select example" style="width: 90px;font-size: 12px;border: 1px solid rebeccapurple">
<option selected hidden="hidden"><?php echo e($paginate); ?></option>
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="250">250</option>
<option value="500">500</option>
<option value="1000">1000</option>
</select>
<div class="">
<?php echo e($productQtyHistories->appends($_GET)->links()); ?>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
<?php echo $__env->make('app.datepicker-js-config', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<script>
$(document).ready(function() {
$(".ranges > ul > li").click(function() {
setTimeout(function() {
$('#search-form').submit();
}, 100);
});
$("#datepicker").on("change.dp" , function (){
$("#search-form").submit();
});
});
var runDatePicker = function() {
$('#datepicker').datepicker({
todayBtn: "linked",
clearBtn: true,
todayHighlight: true,
templates: controls
});
}
</script>
<script>
$('#btnBrow').click(function () {
$('#browFile').click();
});
$(document).ready(function() {
$("#js-nav-menu").removeClass('active');
$("#js-nav-menu li ul li").removeClass('active');
$("#menu_report_list").addClass('active open');
$("#collapse_report").addClass('collapse in');
$("#menu_expense_grn").addClass('active');
})
</script>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('meta'); ?>
<title><?php echo e(__('message.grn report')); ?> - <?php echo e($settings_->shop_name); ?></title>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.admin-main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/backup/jewelry-pos/resources/views/grn-reports/grn-list.blade.php ENDPATH**/ ?>