|
14 | 14 | <div class="breadcrumb-item">{{ __('admin.Invoice') }}</div>
|
15 | 15 | </div>
|
16 | 16 | </div>
|
| 17 | + <div class="section-body"> |
| 18 | + <div class="invoice"> |
| 19 | + <div class="invoice-print"> |
| 20 | + <div class="row"> |
| 21 | + <div class="col-lg-12"> |
| 22 | + <div class="invoice-title"> |
| 23 | + <h2><img src="{{ asset($setting->logo) }}" alt="" width="120px"></h2> |
| 24 | + <div class="invoice-number">{{ __('admin.Order Id') }} #{{ $order->order_id }}</div> |
| 25 | + </div> |
| 26 | + <hr> |
| 27 | + @php |
| 28 | + $orderAddress = $order->user; |
| 29 | + @endphp |
| 30 | + <div class="row"> |
| 31 | + <div class="col-md-6"> |
| 32 | + <address> |
| 33 | + <strong>{{ __('admin.User Information') }}:</strong><br> |
| 34 | + {{ $orderAddress->name }}<br> |
| 35 | + @if ($orderAddress->email) |
| 36 | + {{ $orderAddress->email }}<br> |
| 37 | + @endif |
| 38 | + @if ($orderAddress->phone) |
| 39 | + {{ $orderAddress->phone }}<br> |
| 40 | + @endif |
| 41 | + {{ $orderAddress->address }}, |
| 42 | + </address> |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + <div class="row"> |
| 46 | + <div class="col-md-6"> |
| 47 | + <address> |
| 48 | + <strong>{{ __('admin.Payment Information') }}:</strong><br> |
| 49 | + {{ __('admin.Method') }}: {{ $order->payment_method }}<br> |
| 50 | + {{ __('admin.Status') }} : @if ($order->payment_status == 'success') |
| 51 | + <span class="badge badge-success">{{ __('admin.Complete') }}</span> |
| 52 | + @else |
| 53 | + <span class="badge badge-danger">{{ __('admin.Pending') }}</span> |
| 54 | + @endif <br> |
| 55 | + {{ __('admin.Transaction') }}: {!! Purifier::clean(nl2br($order->transection_id)) !!} |
| 56 | + </address> |
| 57 | + </div> |
| 58 | + <div class="col-md-6 text-md-right"> |
| 59 | + <address> |
| 60 | + <strong>{{ __('admin.Order Information') }}:</strong><br> |
| 61 | + {{ __('admin.Date') }}: |
| 62 | + {{ Carbon\Carbon::parse($order->created_at)->format('d F, Y') }}<br> |
| 63 | + |
| 64 | + {{ __('admin.Status') }} : |
| 65 | + @if ($order->order_status == 1) |
| 66 | + <span class="badge badge-success">{{ __('admin.Complete') }} </span> |
| 67 | + @else |
| 68 | + <span class="badge badge-danger">{{ __('admin.Pending') }}</span> |
| 69 | + @endif |
| 70 | + </address> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + |
| 76 | + <div class="row mt-4"> |
| 77 | + <div class="col-md-12"> |
| 78 | + <div class="section-title">{{ __('admin.Order Summary') }}</div> |
| 79 | + <div class="table-responsive"> |
| 80 | + <table class="table table-striped table-hover table-md"> |
| 81 | + <tr> |
| 82 | + <th width="5%">#</th> |
| 83 | + <th width="25%">{{ __('admin.Product') }}</th> |
| 84 | + <th width="20%">{{ __('admin.Service name') }}</th> |
| 85 | + <th width="20%">{{ __('admin.Option') }}</th> |
| 86 | + <th width="10%">{{ __('admin.Author') }}</th> |
| 87 | + <th width="10%" class="text-center">{{ __('admin.Unit Price') }}</th> |
| 88 | + <th width="10%" class="text-center">{{ __('admin.Qty') }}</th> |
| 89 | + <th width="10%" class="text-right">{{ __('admin.Total') }}</th> |
| 90 | + </tr> |
| 91 | + |
| 92 | + @foreach ($order->orderItems as $index => $item) |
| 93 | + <tr> |
| 94 | + <td>{{ ++$index }}</td> |
| 95 | + <td><a |
| 96 | + href="{{ route('admin.product.edit', ['product' => $item->product_id, 'lang_code' => 'en']) }}">{{ $item->product->name }}</a> |
| 97 | + </td> |
| 98 | + <td>{{ $item->variant_name }} </td> |
| 99 | + <td>{{ $item->option_name }} </td> |
| 100 | + |
| 101 | + <td> |
| 102 | + @if ($item->author) |
| 103 | + <a |
| 104 | + href="{{ route('admin.provider-show', $item->author_id) }}">{{ $item?->author?->name }}</a> |
| 105 | + @endif |
| 106 | + </td> |
| 107 | + <td class="text-center"> |
| 108 | + {{ $setting->currency_icon }}{{ $item->option_price }}</td> |
| 109 | + <td class="text-center">{{ $item->qty }}</td> |
| 110 | + @php |
| 111 | + $total = $item->option_price * $item->qty; |
| 112 | + @endphp |
| 113 | + <td class="text-right">{{ $setting->currency_icon }}{{ $total }} |
| 114 | + </td> |
| 115 | + </tr> |
| 116 | + @endforeach |
| 117 | + </table> |
| 118 | + </div> |
| 119 | + |
| 120 | + <div class="row mt-3"> |
| 121 | + <div class="col-lg-6 order-status"> |
| 122 | + |
| 123 | + </div> |
| 124 | + |
| 125 | + <div class="col-lg-6 text-right"> |
| 126 | + @php |
| 127 | + $sub_total = $order->total_amount; |
| 128 | + $sub_total = $sub_total - $order->shipping_cost; |
| 129 | + $sub_total = $sub_total + $order->coupon_coast; |
| 130 | + @endphp |
| 131 | + |
| 132 | + <hr class="mt-2 mb-2"> |
| 133 | + <div class="invoice-detail-item"> |
| 134 | + <div class="invoice-detail-value invoice-detail-value-lg"> |
| 135 | + {{ __('admin.Total') }} : |
| 136 | + {{ $setting->currency_icon }}{{ round($order->total_amount, 2) }} |
| 137 | + </div> |
| 138 | + </div> |
| 139 | + </div> |
| 140 | + </div> |
| 141 | + </div> |
| 142 | + </div> |
| 143 | + </div> |
| 144 | + </div> |
| 145 | + </div> |
17 | 146 | </section>
|
18 | 147 | </div>
|
19 | 148 | @endsection
|
0 commit comments