Uname: Linux yisu-647059427c03a 3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018 x86_64
Software: nginx/1.22.1
PHP version: 7.3.31 [ PHP INFO ] PHP os: Linux
Server Ip: 103.146.158.90
Your Ip: 216.73.216.141
User: www (1000) | Group: www (1000)
Safe Mode: OFF
Disable Function:
passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv

name : bill.blade.php
@extends('luna.layouts.default')

@section('content')
    <body>
    @include('luna.layouts._nav')
    <style>
        .layui-table td, .layui-table th {
            padding: 9px 5px;
        }
    </style>
    <div class="main">
        <div class="layui-row">
            <div class="layui-col-md8 layui-col-md-offset2 layui-col-sm12">
                <div class="main-box">
                    <div class="pay-title">
                        <svg style="margin-bottom: -6px;" t="1603120404646" class="icon" viewBox="0 0 1024 1024"
                             version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1611" width="27" height="27">
                            <path d="M320.512 428.032h382.976v61.44H320.512zM320.512 616.448h320.512v61.44H320.512z"
                                  fill="#00EAFF" p-id="1612" data-spm-anchor-id="a313x.7781069.0.i3"
                                  class="selected"></path>
                            <path
                                d="M802.816 937.984H221.184l-40.96-40.96V126.976l40.96-40.96h346.112l26.624 10.24 137.216 117.76 98.304 79.872 15.36 31.744v571.392l-41.984 40.96z m-540.672-81.92h500.736V345.088L677.888 276.48 550.912 167.936H262.144v688.128z"
                                fill="#3C8CE7" p-id="1613" data-spm-anchor-id="a313x.7781069.0.i0" class=""></path>
                        </svg>
                        {{ __('dujiaoka.confirm_order') }}
                    </div>

                    <div class="layui-card-body">
                        <div class="product-info">
                            <p style="color: #3C8CE7 ;font-size: 18px;font-weight: 700; text-align: center;margin: 20px 0">
                                {{ __('dujiaoka.warning_title') }}{{ __('dujiaoka.date_to_expired_order', ['min' => dujiaoka_config_get('order_expire_time', 5)]) }}
                            </p>
                        </div>
                        <table class="layui-table" lay-skin="nob">
                            <colgroup>
                                <col width="50%">
                                <col width="50%">
                            </colgroup>
                            <tbody>
                            <tr>
                                <td style="text-align: right">{{ __('order.fields.order_sn') }}:</td>
                                <td>{{ $order_sn }}</td>
                            </tr>
                            <tr>
                                <td style="text-align: right">{{ __('order.fields.title') }}:</td>
                                <td>
                                    <span class="small-tips tips-green noML">{{ $title }}</span>
                                </td>
                            </tr>
                            <tr>
                                <td style="text-align: right">{{ __('order.fields.goods_price') }}:</td>
                                <td>
                                    <span
                                        class="small-tips tips-green noML">{{ __('dujiaoka.money_symbol') }}{{ $goods_price }}</span>
                                </td>
                            </tr>
                            <tr>
                                <td style="text-align: right">{{ __('order.fields.buy_amount') }}:</td>
                                <td><span class="small-tips tips-green noML">x {{ $buy_amount }}</span></td>
                            </tr>
                            @if(isset($coupon))
                                <tr>
                                    <td style="text-align: right">{{ __('order.fields.coupon_id') }}:</td>
                                    <td><span class="small-tips tips-green noML">{{ $coupon['coupon'] }}</span></td>
                                </tr>
                                <tr>
                                    <td style="text-align: right">{{ __('order.fields.coupon_discount_price') }}:</td>
                                    <td><span
                                            class="small-tips tips-green noML">{{ __('dujiaoka.money_symbol') }}{{ $coupon_discount_price }}</span>
                                    </td>
                                </tr>
                            @endif
                            @if($wholesale_discount_price > 0 )
                                <tr>
                                    <td style="text-align: right">{{ __('order.fields.wholesale_discount_price') }}:
                                    </td>
                                    <td><span
                                            class="small-tips tips-green noML">{{ __('dujiaoka.money_symbol') }}{{ $wholesale_discount_price }}</span>
                                    </td>
                                </tr>
                            @endif
                            <tr>
                                <td style="text-align: right">{{ __('order.fields.actual_price') }}:</td>
                                <td>
                                    <span
                                        class="small-tips tips-green noML">{{ __('dujiaoka.money_symbol') }}{{ $actual_price }}</span>
                                </td>

                            </tr>
                            <tr>
                                <td style="text-align: right">{{ __('dujiaoka.email') }}:</td>
                                <td>{{ $email }}</td>
                            </tr>
                            @if($info)
                                @php
                                    preg_match_all('/(\[.*?\])/m', $info, $matches, PREG_SET_ORDER, 0);

                                    foreach ($matches as $item) {
                                        $str = $item[1] ?? '';
                                        if($str){
                                            $info = str_replace($str,'',$info);
                                        }
                                    }
                                @endphp
                                <tr>
                                    <td style="text-align: right">{{ __('dujiaoka.order_information') }}:</td>
                                    <td><p>{{ $info }}</p></td>
                                </tr>
                            @endif
                            <tr>
                                <td style="text-align: right">{{ __('dujiaoka.payment_method') }}:</td>
                                <td>{{ $pay['pay_name'] }}</td>
                            </tr>
                            </tbody>
                        </table>
                        <p class="btn" style="text-align: center">
                            <a href="{{ url('pay-gateway', ['handle' => urlencode($pay['pay_handleroute']),'payway' => $pay['pay_check'], 'orderSN' => $order_sn]) }}">
                                {{ __('dujiaoka.pay_immediately') }}
                            </a>
                        </p>
                    </div>


                </div>
            </div>
        </div>
    </div>

    @include('luna.layouts._footer')

    <div class="query-m">
        <a href="{{ url('order-search') }}">
            <svg t="1602926403006" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                 p-id="3391" width="30" height="30">
                <path d="M320.512 428.032h382.976v61.44H320.512zM320.512 616.448h320.512v61.44H320.512z" fill="#ffffff"
                      p-id="3392" data-spm-anchor-id="a313x.7781069.0.i38" class="selected"></path>
                <path
                    d="M802.816 937.984H221.184l-40.96-40.96V126.976l40.96-40.96h346.112l26.624 10.24 137.216 117.76 98.304 79.872 15.36 31.744v571.392l-41.984 40.96z m-540.672-81.92h500.736V345.088L677.888 276.48 550.912 167.936H262.144v688.128z"
                    fill="#ffffff" p-id="3393" data-spm-anchor-id="a313x.7781069.0.i37" class="selected"></path>
            </svg>
            <span>{{ __('luna.order_search_m') }}</span>
        </a>
    </div>
    </body>
@endsection


© 2026 GrazzMean
https://ai.shandianfk.com/wp-sitemap-posts-post-1.xmlhttps://ai.shandianfk.com/wp-sitemap-posts-page-1.xmlhttps://ai.shandianfk.com/wp-sitemap-taxonomies-category-1.xmlhttps://ai.shandianfk.com/wp-sitemap-taxonomies-post_tag-1.xmlhttps://ai.shandianfk.com/wp-sitemap-users-1.xml