| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 | 
							- @extends('layouts.admin.app')
 
- @section('content')
 
-     <!-- Main content -->
 
-     <section class="content">
 
-     @include('layouts.errors-and-messages')
 
-     <!-- Default box -->
 
-         <div class="box">
 
-             <div class="box-header">
 
-                 <div class="row">
 
-                     <div class="col-md-6">
 
-                         <h2>
 
-                             <a href="{{ route('admin.customers.show', $customer->id) }}">{{$customer->name}}</a> <br />
 
-                             <small>{{$customer->email}}</small> <br />
 
-                             <small>reference: <strong>{{$order->reference}}</strong></small>
 
-                         </h2>
 
-                     </div>
 
-                     <div class="col-md-3 col-md-offset-3">
 
-                         <h2><a href="{{route('admin.orders.invoice.generate', $order['id'])}}" class="btn btn-primary btn-block">Download Invoice</a></h2>
 
-                     </div>
 
-                 </div>
 
-             </div>
 
-         </div>
 
-         <div class="box">
 
-             <div class="box-body">
 
-                 <h4> <i class="fa fa-shopping-bag"></i> Order Information</h4>
 
-                 <table class="table">
 
-                     <thead>
 
-                         <tr>
 
-                             <td class="col-md-3">Date</td>
 
-                             <td class="col-md-3">Customer</td>
 
-                             <td class="col-md-3">Payment</td>
 
-                             <td class="col-md-3">Status</td>
 
-                         </tr>
 
-                     </thead>
 
-                     <tbody>
 
-                     <tr>
 
-                         <td>{{ date('M d, Y h:i a', strtotime($order['created_at'])) }}</td>
 
-                         <td><a href="{{ route('admin.customers.show', $customer->id) }}">{{ $customer->name }}</a></td>
 
-                         <td><strong>{{ $order['payment'] }}</strong></td>
 
-                         <td><button type="button" class="btn btn-info btn-block">{{ $currentStatus->name }}</button></td>
 
-                     </tr>
 
-                     </tbody>
 
-                     <tbody>
 
-                     <tr>
 
-                         <td></td>
 
-                         <td></td>
 
-                         <td class="bg-warning">Subtotal</td>
 
-                         <td class="bg-warning">{{ $order['total_products'] }}</td>
 
-                     </tr>
 
-                     <tr>
 
-                         <td></td>
 
-                         <td></td>
 
-                         <td class="bg-warning">Tax</td>
 
-                         <td class="bg-warning">{{ $order['tax'] }}</td>
 
-                     </tr>
 
-                     <tr>
 
-                         <td></td>
 
-                         <td></td>
 
-                         <td class="bg-warning">Discount</td>
 
-                         <td class="bg-warning">{{ $order['discounts'] }}</td>
 
-                     </tr>
 
-                     <tr>
 
-                         <td></td>
 
-                         <td></td>
 
-                         <td class="bg-success text-bold">Order Total</td>
 
-                         <td class="bg-success text-bold">{{ $order['total'] }}</td>
 
-                     </tr>
 
-                     @if($order['total_paid'] != $order['total'])
 
-                         <tr>
 
-                             <td></td>
 
-                             <td></td>
 
-                             <td class="bg-danger text-bold">Total paid</td>
 
-                             <td class="bg-danger text-bold">{{ $order['total_paid'] }}</td>
 
-                         </tr>
 
-                     @endif
 
-                     </tbody>
 
-                 </table>
 
-             </div>
 
-             <!-- /.box-body -->
 
-         </div>
 
-         @if($order)
 
-             @if($order->total != $order->total_paid)
 
-                 <p class="alert alert-danger">
 
-                     Ooops, there is discrepancy in the total amount of the order and the amount paid. <br />
 
-                     Total order amount: <strong>{{ config('cart.currency') }} {{ $order->total }}</strong> <br>
 
-                     Total amount paid <strong>{{ config('cart.currency') }} {{ $order->total_paid }}</strong>
 
-                 </p>
 
-             @endif
 
-             <div class="box">
 
-                 @if(!$items->isEmpty())
 
-                     <div class="box-body">
 
-                         <h4> <i class="fa fa-gift"></i> Items</h4>
 
-                         <table class="table">
 
-                             <thead>
 
-                             <th class="col-md-2">SKU</th>
 
-                             <th class="col-md-2">Name</th>
 
-                             <th class="col-md-2">Description</th>
 
-                             <th class="col-md-2">Quantity</th>
 
-                             <th class="col-md-2">Price</th>
 
-                             </thead>
 
-                             <tbody>
 
-                             @foreach($items as $item)
 
-                                 <tr>
 
-                                     <td>{{ $item->sku }}</td>
 
-                                     <td>{{ $item->name }}</td>
 
-                                     <td>
 
-                                         {!! $item->description !!}
 
-                                         @php($pattr = \App\Shop\ProductAttributes\ProductAttribute::find($item->product_attribute_id))
 
-                                         @if(!is_null($pattr))<br>
 
-                                             @foreach($pattr->attributesValues as $it)
 
-                                                 <p class="label label-primary">{{ $it->attribute->name }} : {{ $it->value }}</p>
 
-                                             @endforeach
 
-                                         @endif
 
-                                     </td>
 
-                                     <td>{{ $item->pivot->quantity }}</td>
 
-                                     <td>{{ $item->price }}</td>
 
-                                 </tr>
 
-                             @endforeach
 
-                             </tbody>
 
-                         </table>
 
-                     </div>
 
-                 @endif
 
-                 <div class="box-body">
 
-                     <div class="row">
 
-                         <div class="col-md-6">
 
-                             <h4> <i class="fa fa-map-marker"></i> Address</h4>
 
-                             <table class="table">
 
-                                 <thead>
 
-                                     <th>Address 1</th>
 
-                                     <th>Address 2</th>
 
-                                     <th>City</th>
 
-                                     <th>Province</th>
 
-                                     <th>Zip</th>
 
-                                     <th>Country</th>
 
-                                     <th>Phone</th>
 
-                                 </thead>
 
-                                 <tbody>
 
-                                 <tr>
 
-                                     <td>{{ $order->address->address_1 }}</td>
 
-                                     <td>{{ $order->address->address_2 }}</td>
 
-                                     <td>{{ $order->address->city }}</td>
 
-                                     <td>
 
-                                         @if(isset($order->address->province))
 
-                                             {{ $order->address->province->name }}
 
-                                         @endif
 
-                                     </td>
 
-                                     <td>{{ $order->address->zip }}</td>
 
-                                     <td>{{ $order->address->country->name }}</td>
 
-                                     <td>{{ $order->address->phone }}</td>
 
-                                 </tr>
 
-                                 </tbody>
 
-                             </table>
 
-                         </div>
 
-                     </div>
 
-                 </div>
 
-             </div>
 
-             <!-- /.box -->
 
-             <div class="box-footer">
 
-                 <div class="btn-group">
 
-                     <a href="{{ route('admin.orders.index') }}" class="btn btn-default">Back</a>
 
-                     @if($user->hasPermission('update-order'))<a href="{{ route('admin.orders.edit', $order->id) }}" class="btn btn-primary">Edit</a>@endif
 
-                 </div>
 
-             </div>
 
-         @endif
 
-     </section>
 
-     <!-- /.content -->
 
- @endsection
 
 
  |