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

Order Edit

 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 }}
  • {{ $order->unique_id }}
  • {{ $order->status }}
  • {{ $order->created_at->format('d,M,Y') }}
  • Cash On Delivery
  • @foreach ($order->order_details as $key => $details)
    @csrf
    @if ($key +1==1) @endif
    SL Image Product Name Price Quantity Action Total
    {{ $key +1 }} {{ $details->product->title }} {{ $details->product->price }} {{ $details->product->price * $details->quqntity }}
    @endforeach
    @endsection @section('style') @endsection @section('script') @endsection