@extends('backend.layouts.app-backend') @section('content')

Order Details

@include('layouts.message')

Invoice Number: {{$order->invoice_no}}

1. General info
@if(isset($order->created_at)) @endif @if(isset($order->user->first_name)) @endif @if(isset($order->additional_information)) @endif
Order Date {{$order->created_at}}
Order By(Member) {{$order->user->first_name}} {{$order->user->last_name}}
Order Information. {{$order->additional_information}}
2. Contact Info
@if(isset($order->first_name)) @endif @if(isset($order->last_name)) @endif @if(isset($order->company)) @endif @if(isset($order->email)) @endif @if(isset($order->street_address)) @endif @if(isset($order->street_address)) @endif @if(isset($order->street_address)) @endif @if(isset($order->province->name)) @endif @if(isset($order->postal_code)) @endif
First Name {{$order->first_name}}
Last Name {{$order->last_name}}
Company {{$order->company}}
Email {{$order->email}}
Phone Number {{$order->phone}}
Street Address {{$order->street_address}}
City {{$order->city}}
Province {{$order->province->name}}
Postal Code {{$order->postal_code}}
3. Order Info
@if( isset($order->product) && count( $order->product )) @foreach( $order->product as $product ) @if( isset( $product->ad ) ) @endif @if(isset($product->admin_cart_id) ) @endif @endforeach @endif
Category Ad Title Promote Ad Type Duration/Featured Duration Price/Featured Price Ad Status Action
{{$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
Admin Added Item {{$product->title ?? ''}} ${{$product->admin_price ?? ''}} Paid
Sub total ${{$order->sub_total}}
Total ${{$order->total_price}}
@endsection