| 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">
<h2>Customer Details</h2>
<div class="card mb-3">
<div class="card-body">
<h4 class="card-title"><?php echo e($customer->name); ?></h4>
<p class="card-text"><strong>Email:</strong> <?php echo e($customer->email ?? '-'); ?></p>
<p class="card-text"><strong>Phone:</strong> <?php echo e($customer->phone ?? '-'); ?></p>
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-header">Billing Address</div>
<div class="card-body">
<?php echo e($customer->billing_address ?? '-'); ?><br>
<?php echo e($customer->billing_city ?? '-'); ?>, <?php echo e($customer->billing_state ?? '-'); ?>
<?php echo e($customer->billing_country ?? '-'); ?> <?php echo e($customer->billing_zip ?? '-'); ?>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-header">Shipping Address</div>
<div class="card-body">
<?php echo e($customer->shipping_address ?? '-'); ?><br>
<?php echo e($customer->shipping_city ?? '-'); ?>, <?php echo e($customer->shipping_state ?? '-'); ?>
<?php echo e($customer->shipping_country ?? '-'); ?> <?php echo e($customer->shipping_zip ?? '-'); ?>
</div>
</div>
</div>
</div>
<p class="card-text mt-3"><strong>Assigned To:</strong> <?php echo e($customer->user?->name ?? '-'); ?></p>
<p class="card-text"><strong>Notes:</strong> <?php echo e($customer->notes ?? '-'); ?></p>
<p class="card-text"><strong>Created At:</strong> <?php echo e($customer->created_at->format('d M Y H:i')); ?></p>
<p class="card-text"><strong>Updated At:</strong> <?php echo e($customer->updated_at->format('d M Y H:i')); ?></p>
</div>
</div>
<a href="<?php echo e(route('customers.edit', $customer->id)); ?>" class="btn btn-warning">Edit</a>
<form action="<?php echo e(route('customers.destroy', $customer->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('customers.index')); ?>" class="btn btn-secondary">Back to List</a>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/crmapp/resources/views/accounts/show.blade.php ENDPATH**/ ?>