@extends($active_theme) @section('title') {{__('user.Order Detils')}} @endsection @section('frontend-content')
@include('user.inc.profile_header')
@include('user.inc.sideber')
@php $orderAddress = $order->user; @endphp

{{__('user.User Information')}}

{{ $orderAddress->name }}

@if ($orderAddress->phone)

{{ $orderAddress->phone }}y

@endif @if ($orderAddress->email)

{{ $orderAddress->email }}

@endif

{{ $orderAddress->address }}

Invoice No: #{{ $order->order_id }}

Date:{{ Carbon\Carbon::parse($order->created_at)->format('d F, Y') }}

{{__('user.Item Summery')}}

@foreach ($order->orderItems as $index => $item) @php $total = ($item->price * $item->qty) @endphp @endforeach
no items Price Type Author Unit Price Total
{{ ++$index }} {{ html_decode($item->product->productlangfrontend->name) }} {{ ucfirst($item->product->product_type) }} {{ $item->author->name }} {{ $setting->currency_icon }}{{ $item->price }} {{ $setting->currency_icon }}{{ $total }}
@endsection