@extends('admin.layouts.app') @section('title') Order Information | Admin @endsection @section('content')

Order Information

 Back

Shipping Address

Name {{ $order->shipping->name }}
E-mail {{ $order->shipping->email }}
Phone {{ $order->shipping->phone }}
District {{ $order->shipping->city }}
Address {{ $order->shipping->address }}
Note {{ $order->shipping->remark }}
@php $total = 0; $qty = 0; @endphp @foreach ($order->order_details as $key => $details) @php $total += $details->price * $details->quqntity; $qty += $details->quqntity; @endphp @endforeach
Serial Sl Product Name Product Attribute Image Product Qty Product price Total Price
{{ $key + 1 }}
{{ $details->product->title }}
{{ $details->product_attribute }}
{{ $details->quqntity }} {{ $details->price }} {{ $details->quqntity * $details->price }}
Details Amount
Sub total {{ $total }}
Delivery Change {{ $total > 400 ? '0' : $order->area->regular_charge }}
Total {{ $total > 400 ? $total : $total + $order->area->regular_charge }}
@endsection @section('style') @endsection @section('script') @endsection