@include('layouts.message')
Invoice Number: {{$order->invoice_no}}
1. General info
@if(isset($order->created_at))
Order Date |
{{$order->created_at}} |
@endif
@if(isset($order->user->first_name))
Order By(Member) |
{{$order->user->first_name}} {{$order->user->last_name}} |
@endif
@if(isset($order->additional_information))
Order Information. |
{{$order->additional_information}} |
@endif
2. Contact Info
@if(isset($order->first_name))
First Name |
{{$order->first_name}} |
@endif
@if(isset($order->last_name))
Last Name |
{{$order->last_name}} |
@endif
@if(isset($order->company))
Company |
{{$order->company}} |
@endif
@if(isset($order->email))
Email |
{{$order->email}} |
@endif
@if(isset($order->street_address))
Phone Number |
{{$order->phone}} |
@endif
@if(isset($order->street_address))
Street Address |
{{$order->street_address}} |
@endif
@if(isset($order->street_address))
City |
{{$order->city}} |
@endif
@if(isset($order->province->name))
Province |
{{$order->province->name}} |
@endif
@if(isset($order->postal_code))
Postal Code |
{{$order->postal_code}} |
@endif
3. Order Info
Category |
Ad Title |
Promote Ad Type |
Duration/Featured Duration |
Price/Featured Price |
Ad Status |
Action |
@if( isset($order->product) && count( $order->product ))
@foreach( $order->product as $product )
@if( isset( $product->ad ) )
{{$product->module->title ?? ''}}
|
{{$product->ad->title ?? ''}}
@if($product->post_status == 2)
Renew
@elseif($product->post_status == 3)
Upgrade
@else
New
@endif
|
{{$product->ad_setting->title ?? ''}} @if( isset( $product->featured_duration ) ) / Featured @endif |
{{$product->promote_ad_type_duration ?? ''}}/@if( isset( $product->featured_duration ) ) {{$product->featured_duration ?? ''}} @endif Days |
${{$product->promote_ad_type_price ?? ''}} @if( isset( $product->featured_price ) ) + ${{$product->featured_price ?? ''}} @endif |
@if( isset( $product->ad->status ) && $product->ad->status == 0 )
Pending
@endif
@if( isset( $product->ad->status ) && $product->ad->status == 1 )
Approved
@endif
@if( isset( $product->ad->status ) && $product->ad->status == 2 )
Reject
@endif
@if( isset( $product->ad->status ) && $product->ad->status == 3 )
Review
@endif
|
@if($product->module_id == 1)
@endif
@if($product->module_id == 2)
@endif
@if($product->module_id == 3)
@endif
@if($product->module_id == 5)
@endif
@if($product->module_id == 6)
@endif
@if($product->module_id == 11)
@endif
@if($product->module_id == 12)
@endif
@if($product->module_id == 4)
@endif
@if($product->module_id == 8)
@endif
|
@endif
@if(isset($product->admin_cart_id) )
Admin Added Item
|
{{$product->title ?? ''}} |
|
|
${{$product->admin_price ?? ''}} |
Paid |
|
@endif
@endforeach
@endif
|
Sub total |
${{$order->sub_total}} |
|
Total |
${{$order->total_price}} |
@endsection