| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/crmapp/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('content'); ?>
<div class="container-fluid p-0">
<h1 class="h3 mb-3">Product Request Details</h1>
<div class="row">
<div class="col-12">
<div class="card mb-3">
<div class="card-body">
<h4 class="card-title">Product Detail</h4>
<p class="card-text"><strong>Purchased On:</strong> <?php echo e($product->purchase_date ?? '-'); ?></p>
<p class="card-text"><strong>Product Name:</strong> <?php echo e($product->name ?? '-'); ?></p>
<p class="card-text"><strong>Product SKU:</strong> <?php echo e($product->sku ?? '-'); ?></p>
<p class="card-text"><strong>Model Number:</strong> <?php echo e($product->model_number ?? '-'); ?></p>
<p class="card-text"><strong>Serail Number:</strong> <?php echo e($product->serial_number ?? '-'); ?></p>
<p class="card-text"><strong>Sale Price:</strong> <?php echo e($product->sale_price ?? '-'); ?></p>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<h4 class="card-title">Customer Detail</h4>
<p class="card-text"><strong>Email:</strong> <?php echo e($product->customername ?? '-'); ?></p>
<p class="card-text"><strong>Email:</strong> <?php echo e($product->email ?? '-'); ?></p>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<h4 class="card-title">Attachment</h4>
<img src="http://139.59.63.204/crm/public/storage/<?php echo e($product->invoice); ?>" style="width:100%;">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="mt-4">
<a href="<?php echo e(route('inventory.productapproval', ['id' => $product->pr_id, 'value' => 1])); ?>" class="btn btn-success">Approve</a> <a href="<?php echo e(route('inventory.productapproval', ['id' => $product->pr_id, 'value' => 2])); ?>" class="btn btn-danger">Reject</a>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/crm/Modules/Inventory/Resources/views/products/productrequestview.blade.php ENDPATH**/ ?>