@extends('layouts._front.pages') @section('content') {{-- */$active1="";$active2="";$active3="";$active4="class='active'";$active5="";/* --}}
@include('home.includes.sidenav-account')

Order Details

Dog and Rooster
Order No : {{ $data->order_code }} Order Date : {{ date('F d, Y',strtotime($data->order_date)) }}
Billing Information Shipping Information
{{ $data->bFirstname . ' ' . $data->bLastname }}
{{ $data->bAddress . ' ' . $data->bAddress1 . ' ' . $data->bCity . ' ' . $data->bSTate . ' ' . $data->bZip }}
{{ $data->bEmail }}
{{ $data->bPhone }}


{{ $data->sFirstname . ' ' . $data->sLastname }}
{{ $data->sAddress . ' ' . $data->sAddress1 . ' ' . $data->sCity . ' ' . $data->sState . ' ' . $data->sZip }}
{{ $data->sEmail }}
{{ $data->sPhone }}

{{-- */ $subtotal=0; /* --}} @foreach($cart as $carts) {{-- */ $total = $carts->quantity * $carts->product_price; $subtotal = $subtotal + $total; /* --}} @endforeach {{-- */$total = $subtotal + $data->tax;/* --}} {{-- */$total = $total + $data->shipping_amount;/* --}} @if($data->coupon_code != "") {{-- */$total = $total - $data->coupon_price;/* --}} @endif @php $total = $subtotal + $data->shipping_amount - $data->coupon_price + $data->tax; @endphp
Product Name Amount QTY Total
{{ HTML::image('upload/products/'.$carts->product_id.'/_75_'.$carts->image) }}

{{ $carts->product_name }}
$ {{ number_format($carts->product_price,2) }} {{ $carts->quantity }} $ {{ number_format($total,2) }}

Sub-Total: $ {{ number_format($subtotal,2) }}
TAX: $ {{ number_format($data->tax,2) }}
Shipping: ( {{ $data->shipping_name }} ) $ {{ number_format($data->shipping_amount,2) }}
DISCOUNT CODE: {{ $data->coupon_code }}" $ ( {{ $data->coupon_price }} )
GRAND TOTAL: $ {{ number_format($total,2) }}
@stop @section('headercodes') @stop