@extends('layouts.website') @section('title', 'Customer Account') @section('content')
@include('website.customer.sidebar')

Order Details

@foreach($products as $product) @endforeach
Name Price Qty Color Size Total
{{$product->name}} {{$product->price}} {{$product->qty}} {{$product->color != NULL ? $product->size : '--'}} {{$product->size != NULL ? $product->color : '--'}} {{$product->price * $product->qty}}
Subtotal: Tk {{$order->order_total}}
Delivery Charge: Tk {{$order->shipping_charge}}
Total: Tk {{$order->order_total + $order->shipping_charge}}
@endsection