@extends('seller.layouts.app')
@section('title')
Order Information | Seller
@endsection
@section('content')
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 }} |
| Serial Sl |
Product Name |
Product Attribute |
Image |
Product Qty |
Product price |
Total Price |
@php
$total = 0;
$qty = 0;
@endphp
@foreach ($order->order_details as $key => $details)
| {{ $key + 1 }} |
{{ $details->product->title }}
|
{{ $details->product_attribute }}
|
|
{{ $details->quqntity }} |
{{ $details->price }} |
{{ $details->quqntity * $details->price }} |
@php
$total += $details->price * $details->quqntity;
$qty += $details->quqntity;
@endphp
@endforeach
| 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