| 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 Details</h1>
<div class="row">
<div class="col-12">
<div class="card mb-3">
<div class="card-body">
<h4 class="card-title"><?php echo e($product->name); ?></h4>
<p class="card-text"><strong>SKU:</strong> <?php echo e($product->sku ?? '-'); ?></p>
<p class="card-text"><strong>Model:</strong> <?php echo e($product->model_number ?? '-'); ?></p>
<p class="card-text"><strong>Serial:</strong> <?php echo e($product->serial_number); ?></p>
<p class="card-text"><strong>Unit:</strong> <?php echo e($product->unit ?? '-'); ?></p>
<p class="card-text"><strong>Cost Price:</strong> <?php echo e($product->cost_price ?? '-'); ?></p>
<p class="card-text"><strong>Sale Price:</strong> <?php echo e($product->sale_price ?? '-'); ?></p>
<p class="card-text"><strong>Warranty Period:</strong> <?php echo e($product->warranty_period ?? '-'); ?></p>
<p class="card-text"><strong>Created At:</strong> <?php echo e($product->created_at->format('d M Y H:i')); ?></p>
<p class="card-text"><strong>Updated At:</strong> <?php echo e($product->updated_at->format('d M Y H:i')); ?></p>
</div>
</div>
<a href="<?php echo e(route('inventory.products.edit',$product->id)); ?>" class="btn btn-warning">Edit</a>
<form action="<?php echo e(route('inventory.products.destroy',$product->id)); ?>" method="POST" style="display:inline;">
<?php echo csrf_field(); ?>
<?php echo method_field('DELETE'); ?>
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="<?php echo e(route('inventory.products.index')); ?>" class="btn btn-secondary">Back to List</a>
</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/show.blade.php ENDPATH**/ ?>